Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Unsolved
Collapse
Discussion Forum to share and further the development of home control and automation, independent of platforms.
  1. Home
  2. Software
  3. Multi-System Reactor
  4. [Dev] Inheritance in MQTT templates?
Device log?
G
@toggledbits is there a log that will show me what rule is turning on a specific device? I've got a switch that has been kicking on at 2200 ET for several nights now and the reactor.log doesn't have a thing in it that I can see on a device level (it being more rules-based).
Multi-System Reactor
Midnight crossing not working in date/time condition (build 25325)
tunnusT
Topic thumbnail image
Multi-System Reactor
Error: Command timeout
G
at _ClientAPI._commandTimeout (http://192.168.1.100:8111/client/ClientAPI.js:807:179 Seeing this randomly when returning to open browser tab after being away awhile. Once, maybe twice a day. "What did you do to trigger it?" Literally nothing, just walked away and returned and there it was. Actions taken in reasonably close proximity to this particular instance of it popping up: I'd restarted the MSR container in Portainer. I'll try to grab some logs here shortly.
Multi-System Reactor
Reactor (Multi-System/Multi-Hub) Announcements
toggledbitsT
Build 21228 has been released. Docker images available from DockerHub as usual, and bare-metal packages here. Home Assistant up to version 2021.8.6 supported; the online version of the manual will now state the current supported versions; Fix an error in OWMWeatherController that could cause it to stop updating; Unify the approach to entity filtering on all hub interface classes (controllers); this works for device entities only; it may be extended to other entities later; Improve error detail in messages for EzloController during auth phase; Add isRuleSet() and isRuleEnabled() functions to expressions extensions; Implement set action for lock and passage capabilities (makes them more easily scriptable in some cases); Fix a place in the UI where 24-hour time was not being displayed.
Multi-System Reactor
[Solved] Local expression in Rule does not evaluate as they used to do
CrilleC
Topic thumbnail image
Multi-System Reactor
Home Assistant 2025.11.2 and latest-25315
CrilleC
Topic thumbnail image
Multi-System Reactor
Notice to Docker + ARM Users (RPi 3/4/5 and others)
toggledbitsT
This post does not apply to users of Intel/AMD-based systems. If you are using a Reactor image tagged latest-amd64 or stable-amd64, then this post does not apply to you. It also does not apply to bare-metal installs; it's for users of docker images on ARM-based systems only (principally Raspberry Pi hosts, but could be others). After January 15, 2026, I will no longer produce the aarch64-tagged docker image for Reactor. The ARM images will be arm64 for 64-bit operating systems, and armv7l for 32-bit operating systems. For those of you running a container from the aarch64 image today, this will be a relatively simple change: you just need to switch the image used for your docker container to a differently-tagged image. If you are using docker-compose, then this is a relatively simple matter of changing the image line in your docker-compose.yaml file and then stopping (docker-compose down) and restarting (docker-compose up -d) your Reactor daemon. But there's a catch... not all of you can safely just switch from the aarch64 image to the arm64 image. And, you can't just trust the output of uname -m, for example, because this exposes the CPU architecture, but not the word size of the OS running on that CPU. For Raspberry Pi systems, the transition to 64-bit operating systems was long (starting in 2016) and not always obvious — although there was a first "official" 64-bit OS for RPis in 2020, it did not become a default recommendation in the Raspberry Pi Imager until 2021, and then that was only the default for Pi 3/4 systems with >4GB RAM; it was 2022 before it was universally recommended for all 64-bit CPUs regardless of RAM size. Depending on when you first imaged your RPi system and what default you may have been offered/chosen, you could today easily have a 64-bit CPU Raspberry Pi running a 32-bit version of the operating system. Upgrades along the way would not change this; changing it to fully 64-bit requires a full reimage of the system. To establish if your OS is 64- or 32-bit, log in to your Pi and run: sudo dpkg-architecture -q DEB_HOST_ARCH. If the response is arm64 or aarch64, then you are running a 64-bit OS and you should use the arm64-tagged image. If it's anything else, you are running a 32-bit OS, and you should use the armv7l-tagged image. pi@rpi4-1:~ $ sudo dpkg-architecture -q DEB_HOST_ARCH armhf pi@rpi4-1:~ $ uname -m aarch64 pi@rpi4-1:~ $ In the example above, the uname command reports that the CPU is 64-bit architecture (aarch64), which is true for the host on which I ran these commands, but the DEB_HOST_ARCH value is armhf, indicating a 32-bit operating system. This system has to use the armv7l-tagged image. Other systems will have their own ways of determining the word size of the running OS. Since the majority of Reactor users running ARM systems are on Raspberry Pis, I am able to supply the above instructions, but if you happen to have a different ARM system, you'll need to do some web searching to figure out how to expose that information. Or, you can just try the arm64 image, and if it doesn't start up, try the armv7l image. Remember to always back up your system before making any changes. For everyone, please make this change as soon as possible, and if you have any trouble finding a working image, please (1) go back to the current aarch64 image; and (2) let me know in this thread along with as much detail about your host system as you can offer (including the output of the dpkg-architecture command mentioned above).
Multi-System Reactor
Requesting a proper ARM64/aarch64 Docker image (Pi 5 support)
M
Hi, I'm in the process of migrating from a Raspberry Pi 4 (ARMv7) to a Raspberry Pi 5 (ARMv8/aarch64), but I’ve run into an issue: there is no proper ARMv8/aarch64 image available. None of the existing images run on the Pi 5 - they all exit immediately with code 139 (segmentation fault), which typically indicates that the binaries inside the image are not compatible with the ARM64/aarch64 architecture used by the Pi 5. Would it be possible to publish a correct ARMv8/aarch64 (linux/arm64) image? Building one should be relatively straightforward using docker buildx with multi-arch support. For example, my own Node.js images are built this way: docker buildx build --push \ -t <localrepo>/<project>:<tag> \ --platform=linux/arm64,linux/amd64 \ --file ./apps/<project>/Dockerfile . This produces both the AMD64 and ARM64/v8 variants automatically. Also, as a side note, it may be best to avoid using Alpine as the base image for the ARM64 build, since musl-based builds often cause compatibility issues and unnecessary headaches. A glibc-based base image (e.g., Debian or Ubuntu) tends to work far more reliably on ARM64, especially for Node.js applications. @toggledbits - tagging you in case you missed this. Thanks, mgvra
Multi-System Reactor
Script action and custom timers
therealdbT
Sorry to write here without trying, but I’m flying today. Am I correct if i say that script action with alarm() makes it possible to execute a reaction in a given interval, lets say 15 seconds or 3.5 minutes? That sounds amazing, since I’ve used weird tricks, including a custom controller, just to do this.
Multi-System Reactor
Help resolve change in behaviour post update
CatmanV2C
Topic thumbnail image
Multi-System Reactor
Reactor w/HA 2025.11 error on set_datetime service call setting only time
CrilleC
@toggledbits Do you know if this is related to that PR or is it a change they made in 2025.11.1? [latest-25310]2025-11-11T13:16:24.319Z <HassController:INFO> HassController#hass perform x_hass_input_datetime.set_datetime on Entity#hass>input_datetime_vvb_dag with { "time": "10:45" } [latest-25310]2025-11-11T13:16:24.320Z <HassController:INFO> HassController#hass: sending payload for x_hass_input_datetime.set_datetime on Entity#hass>input_datetime_vvb_dag action: { "type": "call_service", "service_data": { "date": (null), "time": "10:45", "datetime": (null), "timestamp": (null) }, "domain": "input_datetime", "service": "set_datetime", "target": { "entity_id": "input_datetime.vvb_dag" } } [latest-25310]2025-11-11T13:16:24.321Z <HassController:ERR> HassController#hass request 1762866984320<2025-11-11 14:16:24> (call_service) failed: [Error] Not a parseable type for dictionary value @ data['date'] [-] [latest-25310]2025-11-11T13:16:24.321Z <HassController:WARN> HassController#hass action x_hass_input_datetime.set_datetime({ "time": "10:45" }) on Entity#hass>input_datetime_vvb_dag failed! [latest-25310]2025-11-11T13:16:24.321Z <HassController:INFO> Service call payload: {"type":"call_service","service_data":{"date":null,"time":"10:45","datetime":null,"timestamp":null},"domain":"input_datetime","service":"set_datetime","target":{"entity_id":"input_datetime.vvb_dag"},"id":1762866984320} [latest-25310]2025-11-11T13:16:24.322Z <HassController:INFO> Service data: {"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,"max":9223372036854776000,"mode":"box","step":1}}}},"target":{"entity":[{"domain":["input_datetime"]}]}} [latest-25310]2025-11-11T13:16:24.322Z <Engine:ERR> Engine#1 reaction rule-mgb8pfhs:S step 0 perform x_hass_input_datetime.set_datetime failed: [Error] Not a parseable type for dictionary value @ data['date'] [-] [latest-25310]2025-11-11T13:16:24.322Z <Engine:INFO> Engine#1 action args: { "time": "10:45" } [latest-25310]2025-11-11T13:16:24.322Z <Engine:INFO> Resuming reaction Sätt Schema VVB i Home Assistant<AKTIV> (rule-mgb8pfhs:S) from step 1 [latest-25310]2025-11-11T13:16:24.323Z <HassController:INFO> HassController#hass perform x_hass_input_datetime.set_datetime on Entity#hass>input_datetime_vvb_natt with { "time": "03:00", "timestamp": 0 } [latest-25310]2025-11-11T13:16:24.323Z <HassController:INFO> HassController#hass: sending payload for x_hass_input_datetime.set_datetime on Entity#hass>input_datetime_vvb_natt action: { "type": "call_service", "service_data": { "date": (null), "time": "03:00", "datetime": (null), "timestamp": 0 }, "domain": "input_datetime", "service": "set_datetime", "target": { "entity_id": "input_datetime.vvb_natt" } } [latest-25310]2025-11-11T13:16:24.324Z <HassController:ERR> HassController#hass request 1762866984323<2025-11-11 14:16:24> (call_service) failed: [Error] Not a parseable type for dictionary value @ data['date'] [-] [latest-25310]2025-11-11T13:16:24.324Z <HassController:WARN> HassController#hass action x_hass_input_datetime.set_datetime({ "time": "03:00", "timestamp": 0 }) on Entity#hass>input_datetime_vvb_natt failed! [latest-25310]2025-11-11T13:16:24.324Z <HassController:INFO> Service call payload: {"type":"call_service","service_data":{"date":null,"time":"03:00","datetime":null,"timestamp":0},"domain":"input_datetime","service":"set_datetime","target":{"entity_id":"input_datetime.vvb_natt"},"id":1762866984323} [latest-25310]2025-11-11T13:16:24.324Z <HassController:INFO> Service data: {"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,"max":9223372036854776000,"mode":"box","step":1}}}},"target":{"entity":[{"domain":["input_datetime"]}]}} [latest-25310]2025-11-11T13:16:24.324Z <Engine:ERR> Engine#1 reaction rule-mgb8pfhs:S step 1 perform x_hass_input_datetime.set_datetime failed: [Error] Not a parseable type for dictionary value @ data['date'] [-] [latest-25310]2025-11-11T13:16:24.324Z <Engine:INFO> Engine#1 action args: { "time": "03:00", "timestamp": 0 } [latest-25310]2025-11-11T13:16:24.325Z <Engine:INFO> Resuming reaction Sätt Schema VVB i Home Assistant<AKTIV> (rule-mgb8pfhs:S) from step 2 [latest-25310]2025-11-11T13:16:24.325Z <Engine:INFO> Sätt Schema VVB i Home Assistant<AKTIV> all actions completed.
Multi-System Reactor
Reactor Version 25310 : Office Light control via rule in reactor no longer working since last update.
P
Hello, I currently have an office light (connected via a Leviton Zwave Dimmer switch) controlled from a Gen5 Aeotech Zwave switch installed on my Synology 720+ NAS. I run HA(2025.11.10) in a virtual machine from my NAS and Reactor on the container manager of the same NAS. Prior to updating to 25304 the rule I had set to turn the light on to a specific dimming value worked correctly. Now the rule appears to follow the decision tree, however the reaction does not trigger setting the dimming or turning on the office light? Strangely I can still turn the light on and off as well as dim it directly from HASS..? I have tried using the ''try this action'' button in the rules reaction setting and it will not control the light and does not throw an error flagÉ Please help, P.S Reactor has been rock steady for me over the last few years and I'm a big fan of this solution.
Multi-System Reactor
[Solved] alarm() in global expression throws error in log.
CrilleC
Topic thumbnail image
Multi-System Reactor
[Solved] Define function issue in latest-25304
CrilleC
Topic thumbnail image
Multi-System Reactor
No Upgrade Notification for Build 25308?
CatmanV2C
FWIW I'm no longer getting a notification from MSR that there's an update. Just thought I'd mention it C
Multi-System Reactor
Strange behavior in MSR latest-25304 with disabled groups in Reaction
therealdbT
Topic thumbnail image
Multi-System Reactor
[Reactor] Variables not updating correctly in latest-25201-2aa18550
therealdbT
Topic thumbnail image
Multi-System Reactor
The reaction stopped working (Google Nest max playing a video)
F
Topic thumbnail image
Multi-System Reactor
Handling Dead Entities and Renamed Entities
PablaP
Hello all.. been a minute! I recently rebuilt my Z wave network and migrated to a new z wave stick. In order to prevent any downtime I kept my original z wave network up and ran a docker version of Z Wave JS UI with my new controller. This way I could add device by device without having any devices down. I finally moved all the devices over to my new stick today. The final step was to migrate everything from my Docker instance of Z Wave JS UI to the HA add-on of Z Wave JS UI. However during this migration some of the names didn't populate correctly which I later managed to import back into Z Wave JS UI. The issue was in Reactor it is stuck on the default names and the entities are not updating. I removed the controller from Reactor, restarted, hard refreshed, and added the controller back however the new entity names have not updated. Also it seems like the old entities from my previous instance of Z Wave JS UI are lingering and not being marked as dead (I believe a certain amount of time needs to lapse before they're marked as dead in Reactor). My goal is to basically purge all the entities for the 'ZWaveJS' controller in Reactor so it can pull all the updated entity names and only the entities that exist in Z Wave JS UI. I cannot find a quick way to do this, I know entities can be deleted one by one, but with over 100 entities this would take long I am guessing that if I added the controller with a new name in in the Reactor config it would pull the updated entities and names but I think that would break my rules since the entity IDs would change (I made sure to name all the entities the exact same as they were previously to prevent this issue).
Multi-System Reactor
Strange behavior for MQTT templates using payload and attributes
therealdbT
Topic thumbnail image
Multi-System Reactor

[Dev] Inheritance in MQTT templates?

Scheduled Pinned Locked Moved Multi-System Reactor
40 Posts 4 Posters 7.8k Views 4 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • toggledbitsT Offline
    toggledbitsT Offline
    toggledbits
    wrote on last edited by
    #7

    Yes, yes, I've already looked at the definition in Github, I need you to be more specific. What are the names you redacted at Y in your previous post.

    Author of Multi-system Reactor and Reactor, DelayLight, Switchboard, and about a dozen other plugins that run on Vera and openLuup.

    therealdbT 1 Reply Last reply
    0
    • toggledbitsT toggledbits

      Yes, yes, I've already looked at the definition in Github, I need you to be more specific. What are the names you redacted at Y in your previous post.

      therealdbT Offline
      therealdbT Offline
      therealdb
      wrote on last edited by
      #8

      @toggledbits oh, my bad. I'll try to re-pro again when home, but it should be x_energy_sensor_exported for Y and the device name for X.

      --
      On a mission to automate everything.

      My MS Reactor contrib
      My Luup Plug-ins

      1 Reply Last reply
      0
      • toggledbitsT Offline
        toggledbitsT Offline
        toggledbits
        wrote on last edited by
        #9

        OK. That helps. And problem understood. I think I have an answer. New build later today.

        Author of Multi-system Reactor and Reactor, DelayLight, Switchboard, and about a dozen other plugins that run on Vera and openLuup.

        1 Reply Last reply
        👍
        0
        • toggledbitsT Offline
          toggledbitsT Offline
          toggledbits
          wrote on last edited by
          #10

          OK. MQTTController build 24144 up. Adds support for a capabilities section at the top level of any template file. Format is same as for system_capabilities.yaml. See MQTTController docs, updated.

          Author of Multi-system Reactor and Reactor, DelayLight, Switchboard, and about a dozen other plugins that run on Vera and openLuup.

          1 Reply Last reply
          👍
          0
          • therealdbT Offline
            therealdbT Offline
            therealdb
            wrote on last edited by
            #11

            That’s huge! Thank you!

            --
            On a mission to automate everything.

            My MS Reactor contrib
            My Luup Plug-ins

            1 Reply Last reply
            1
            • therealdbT Offline
              therealdbT Offline
              therealdb
              wrote on last edited by
              #12

              Ok, version 24146 of my templates is now ready, refactored with this new feature and starting to include Shelly Gen 3 (I've also used a couple of system templates as base).

              The only minor thing is that if I have a primary_attribute defined in a template, MQTTController will not use the last one in the hierarchy, but the first one, and complain. Maybe just a brief note on the docs to highlight this.

              GitHub - dbochicchio/reactor-mqtt-contrib: Contrib MQTT templates for Reactor

              GitHub - dbochicchio/reactor-mqtt-contrib: Contrib MQTT templates for Reactor

              Contrib MQTT templates for Reactor. Contribute to dbochicchio/reactor-mqtt-contrib development by creating an account on GitHub.

              Thanks!

              --
              On a mission to automate everything.

              My MS Reactor contrib
              My Luup Plug-ins

              1 Reply Last reply
              0
              • CrilleC Online
                CrilleC Online
                Crille
                wrote on last edited by
                #13

                Quick question, looking at MQTTController integrated templates for Shelly, they are in separate files. Is it possible to define all these in one yaml file? Because I'm trying to do that for common Zigbee2MQTT capabilities and getting errors in the log that I can't figure out why. If not possible I get it but if it is possible I will elaborate my issue.

                1 Reply Last reply
                0
                • toggledbitsT Offline
                  toggledbitsT Offline
                  toggledbits
                  wrote on last edited by
                  #14

                  Yes, it's possible.

                  Author of Multi-system Reactor and Reactor, DelayLight, Switchboard, and about a dozen other plugins that run on Vera and openLuup.

                  CrilleC 1 Reply Last reply
                  0
                  • toggledbitsT toggledbits

                    Yes, it's possible.

                    CrilleC Online
                    CrilleC Online
                    Crille
                    wrote on last edited by Crille
                    #15

                    OK, here goes.
                    [1/2]
                    Reactor latest-24152 bare metal.
                    MQTTController 24144.

                    I can't figure this out
                    "MQTTController:CRIT ReferenceError: Capability string_sensor not extended (mosquitto-mqtt>sovrumsdorr [-]"

                    reactor.log

                    [latest-24152]2024-06-05T20:20:25.153Z <app:null> Reactor build latest-24152-3455578a starting on v20.13.1 /usr/local/bin/node
                    [latest-24152]2024-06-05T20:20:25.153Z <app:null> Process ID 317180 user/group 1000/1000; bare-metal; platform linux/x64 #117-Ubuntu SMP Fri Apr 26 12:26:49 UTC 2024; locale sv_SE.utf8
                    [latest-24152]2024-06-05T20:20:25.154Z <app:null> Basedir /home/homebridge/reactor; data in /home/homebridge/reactor/storage
                    [latest-24152]2024-06-05T20:20:25.154Z <app:null> NODE_PATH=/home/homebridge/reactor
                    [latest-24152]2024-06-05T20:20:25.169Z <app:null> Resolved timezone=Europe/Stockholm, environment TZ=(undefined); offset minutes from UTC=120
                    [latest-24152]2024-06-05T20:20:25.171Z <app:null> Configured locale sv-SE; selected locale(s) sv-SE
                    [latest-24152]2024-06-05T20:20:25.177Z <app:null> Loaded locale sv-SE for sv-SE
                    [latest-24152]2024-06-05T20:20:25.178Z <app:null> Local date/time using configured timezone and locale formatting is "2024-06-05 22:20:25"
                    [latest-24152]2024-06-05T20:20:25.180Z <Structure:null> Module Structure v24110
                    [latest-24152]2024-06-05T20:20:25.181Z <Capabilities:null> Module Capabilities v23331
                    [latest-24152]2024-06-05T20:20:25.191Z <Capabilities:NOTICE> System capabilities loaded from core distribution, data version 24108 revision 1
                    [latest-24152]2024-06-05T20:20:25.197Z <Plugin:null> Module Plugin v22300
                    [latest-24152]2024-06-05T20:20:25.214Z <TimerBroker:null> Module TimerBroker v22283
                    [latest-24152]2024-06-05T20:20:25.216Z <Entity:null> Module Entity v24138
                    [latest-24152]2024-06-05T20:20:25.218Z <Controller:null> Module Controller v24099
                    [latest-24152]2024-06-05T20:20:25.232Z <default:null> Module Ruleset v24099
                    [latest-24152]2024-06-05T20:20:25.232Z <default:null> Module Rulesets v24099
                    [latest-24152]2024-06-05T20:20:25.250Z <GlobalExpression:null> Module GlobalExpression v24099
                    [latest-24152]2024-06-05T20:20:25.275Z <Predicate:null> Module Predicate v23093
                    [latest-24152]2024-06-05T20:20:25.277Z <AlertManager:null> Module AlertManager v24099
                    [latest-24152]2024-06-05T20:20:25.278Z <Rule:null> Module Rule v24149
                    [latest-24152]2024-06-05T20:20:25.280Z <GlobalReaction:null> Module GlobalReaction v24099
                    [latest-24152]2024-06-05T20:20:25.289Z <Engine:null> Module Engine v24113
                    [latest-24152]2024-06-05T20:20:25.292Z <httpapi:null> Module httpapi v24148
                    [latest-24152]2024-06-05T20:20:25.298Z <wsapi:null> Module wsapi v24148
                    [latest-24152]2024-06-05T20:20:25.299Z <app:NOTICE> Starting Structure...
                    [latest-24152]2024-06-05T20:20:25.308Z <Structure:INFO> Structure#1 loading controller interface vera (VeraController)
                    [latest-24152]2024-06-05T20:20:25.331Z <TaskQueue:null> Module TaskQueue 24138
                    [latest-24152]2024-06-05T20:20:25.332Z <VeraController:null> Module VeraController v24050
                    [latest-24152]2024-06-05T20:20:25.375Z <Structure:INFO> Structure#1 loading controller interface ezlo (EzloController)
                    [latest-24152]2024-06-05T20:20:25.381Z <EzloController:null> Module EzloController v23345
                    [latest-24152]2024-06-05T20:20:25.384Z <Structure:INFO> Structure#1 loading controller interface groups (DynamicGroupController)
                    [latest-24152]2024-06-05T20:20:25.386Z <DynamicGroupController:null> Module DynamicGroupController v24128
                    [latest-24152]2024-06-05T20:20:25.390Z <Structure:INFO> Structure#1 loading controller interface virtual (VirtualEntityController)
                    [latest-24152]2024-06-05T20:20:25.393Z <VirtualEntityController:null> Module VirtualEntityController v24147
                    [latest-24152]2024-06-05T20:20:25.395Z <Structure:INFO> Structure#1 loading controller interface hass (HassController)
                    [latest-24152]2024-06-05T20:20:25.399Z <HassController:null> Module HassController v24146
                    [latest-24152]2024-06-05T20:20:25.450Z <Structure:INFO> Structure#1 loading controller interface reactor_system (SystemController)
                    [latest-24152]2024-06-05T20:20:25.452Z <SystemController:null> Module SystemController v24076
                    [latest-24152]2024-06-05T20:20:25.453Z <Structure:INFO> Structure#1 loading controller interface scheman (ScheduleController)
                    [latest-24152]2024-06-05T20:20:25.455Z <ScheduleController:null> Module ScheduleController v24097
                    [latest-24152]2024-06-05T20:20:25.455Z <Controller:INFO> Loaded ScheduleController version "0.1.24097"; Patrick Rigney/Kedron Holdings LLC <patrick@toggledbits.com>
                    [latest-24152]2024-06-05T20:20:25.456Z <Structure:INFO> Structure#1 loading controller interface mosquitto-mqtt (MQTTController)
                    [latest-24152]2024-06-05T20:20:25.459Z <MQTTController:null> Module MQTTController v24144
                    [latest-24152]2024-06-05T20:20:25.491Z <Controller:INFO> Loaded MQTTController version "0.2.24144"; Patrick Rigney/Kedron Holdings LLC <patrick@toggledbits.com> https://reactor.toggledbits.com/docs/MQTTController/
                    [latest-24152]2024-06-05T20:20:25.503Z <Structure:INFO> Structure#1 loading controller interface mqtt (MQTTController)
                    [latest-24152]2024-06-05T20:20:25.503Z <Controller:INFO> Loaded MQTTController version "0.2.24144"; Patrick Rigney/Kedron Holdings LLC <patrick@toggledbits.com> https://reactor.toggledbits.com/docs/MQTTController/
                    [latest-24152]2024-06-05T20:20:25.507Z <Structure:INFO> Starting controller VeraController#vera
                    [latest-24152]2024-06-05T20:20:25.507Z <VeraController:NOTICE> VeraController#vera starting...
                    [latest-24152]2024-06-05T20:20:25.510Z <Controller:INFO> VeraController#vera loaded vera capabilities ver 22253 rev 1 format 1
                    [latest-24152]2024-06-05T20:20:25.521Z <Controller:INFO> VeraController#vera loaded implementation data ver 23109 rev 1 format 1
                    [latest-24152]2024-06-05T20:20:25.521Z <Structure:INFO> Starting controller EzloController#ezlo
                    [latest-24152]2024-06-05T20:20:25.523Z <Controller:INFO> EzloController#ezlo loaded ezlo capabilities ver 22266 rev 1 format 1
                    [latest-24152]2024-06-05T20:20:25.528Z <Controller:INFO> EzloController#ezlo loaded implementation data ver 22344 rev 1 format 1
                    [latest-24152]2024-06-05T20:20:25.528Z <Structure:INFO> Starting controller DynamicGroupController#groups
                    [latest-24152]2024-06-05T20:20:25.530Z <Controller:NOTICE> Controller DynamicGroupController#groups is now online.
                    [latest-24152]2024-06-05T20:20:25.530Z <Structure:INFO> Starting controller VirtualEntityController#virtual
                    [latest-24152]2024-06-05T20:20:25.531Z <Controller:INFO> VirtualEntityController#virtual loaded virtualentity capabilities ver 22263 rev 2 format 1
                    [latest-24152]2024-06-05T20:20:25.532Z <Controller:INFO> VirtualEntityController#virtual loaded implementation data ver 22280 rev 1 format 1
                    [latest-24152]2024-06-05T20:20:25.532Z <Structure:INFO> Starting controller HassController#hass
                    [latest-24152]2024-06-05T20:20:25.532Z <HassController:NOTICE> HassController#hass starting...
                    [latest-24152]2024-06-05T20:20:25.533Z <Controller:INFO> HassController#hass loaded hass capabilities ver 23289 rev 1 format 1
                    [latest-24152]2024-06-05T20:20:25.536Z <Controller:INFO> HassController#hass loaded implementation data ver 24146 rev 1 format 1
                    [latest-24152]2024-06-05T20:20:25.536Z <Structure:INFO> Starting controller SystemController#reactor_system
                    [latest-24152]2024-06-05T20:20:25.537Z <Controller:NOTICE> Controller SystemController#reactor_system is now online.
                    [latest-24152]2024-06-05T20:20:25.580Z <Structure:INFO> Starting controller ScheduleController#scheman
                    [latest-24152]2024-06-05T20:20:25.580Z <ScheduleController:INFO> ScheduleController#scheman Sun Information entity is reactor_system>sun
                    [latest-24152]2024-06-05T20:20:25.582Z <Controller:NOTICE> Controller ScheduleController#scheman is now online.
                    [latest-24152]2024-06-05T20:20:25.582Z <Structure:INFO> Starting controller MQTTController#mosquitto-mqtt
                    [latest-24152]2024-06-05T20:20:25.583Z <Controller:INFO> MQTTController#mosquitto-mqtt loaded mqtt capabilities ver 22353 rev 1 format 1
                    [latest-24152]2024-06-05T20:20:25.583Z <Controller:INFO> MQTTController#mosquitto-mqtt loaded implementation data ver 24122 rev 1 format 1
                    [latest-24152]2024-06-05T20:20:25.583Z <Structure:INFO> Starting controller MQTTController#mqtt
                    [latest-24152]2024-06-05T20:20:25.583Z <MQTTController:WARN> mqtt_capabilities redefines existing x_mqtt
                    [latest-24152]2024-06-05T20:20:25.584Z <MQTTController:WARN> mqtt_capabilities redefines existing x_mqtt_device
                    [latest-24152]2024-06-05T20:20:25.584Z <Capabilities:INFO> [Capabilities][object Object] overriding capability x_mqtt
                    [latest-24152]2024-06-05T20:20:25.584Z <Capabilities:INFO> [Capabilities][object Object] overriding capability x_mqtt_device
                    [latest-24152]2024-06-05T20:20:25.584Z <Controller:INFO> MQTTController#mqtt loaded mqtt capabilities ver 22353 rev 1 format 1
                    [latest-24152]2024-06-05T20:20:25.584Z <Controller:INFO> MQTTController#mqtt loaded implementation data ver 24122 rev 1 format 1
                    [latest-24152]2024-06-05T20:20:25.587Z <VeraController:INFO> VeraController: deviceclass room capability sys_group does not provide attribute members
                    [latest-24152]2024-06-05T20:20:25.587Z <VeraController:INFO> VeraController: deviceclass room capability sys_group does not provide attribute empty
                    [latest-24152]2024-06-05T20:20:25.588Z <EzloController:INFO> EzloController#ezlo device mapping data loaded; checking...
                    [latest-24152]2024-06-05T20:20:25.588Z <EzloController:WARN> EzloController: implementation of capability battery_maintenance does not provide attribute state
                    [latest-24152]2024-06-05T20:20:25.589Z <HassController:INFO> HassController#hass device mapping data loaded; checking...
                    [latest-24152]2024-06-05T20:20:25.602Z <EzloController:INFO> EzloController#ezlo: connecting to hub "xxxxxx" via anonymous local connection to wss://xxx.xxx.xxx.xxx
                    [latest-24152]2024-06-05T20:20:25.605Z <VirtualEntityController:INFO> VirtualEntityController#virtual configuring virtual Dyr El (dyrEl)
                    [latest-24152]2024-06-05T20:20:25.612Z <VirtualEntityController:INFO> VirtualEntityController#virtual configuring virtual Solar Production Forecast (solar_production_forecast)
                    [latest-24152]2024-06-05T20:20:25.617Z <Controller:INFO> VirtualEntityController#virtual 0 dead entities older than 86400000s purged
                    [latest-24152]2024-06-05T20:20:25.617Z <HassController:NOTICE> HassController#hass connecting to ws://xxx.xxx.xxx.xxx/api/websocket
                    [latest-24152]2024-06-05T20:20:25.622Z <MQTTController:WARN> MQTTController#mqtt file my_tasmota_generic_relay.yaml in /home/homebridge/reactor/config/mqtt_templates/my_tasmota_generic_relay.yaml overrides existing template definition my_tasmota_generic_relay
                    [latest-24152]2024-06-05T20:20:25.622Z <MQTTController:WARN> MQTTController#mqtt file shelly_plug_s.yaml in /home/homebridge/reactor/config/mqtt_templates/shelly_plug_s.yaml overrides existing template definition shelly_plug_s
                    [latest-24152]2024-06-05T20:20:25.622Z <MQTTController:WARN> MQTTController#mqtt file tasmota_sensor_lyw.yaml in /home/homebridge/reactor/config/mqtt_templates/tasmota_sensor_lyw.yaml overrides existing template definition tasmota_sensor_lyw
                    [latest-24152]2024-06-05T20:20:25.623Z <MQTTController:WARN> MQTTController#mqtt file wallbox_pulsar_plus.yaml in /home/homebridge/reactor/config/mqtt_templates/wallbox_pulsar_plus.yaml overrides existing template definition wallbox_pulsar_plus
                    [latest-24152]2024-06-05T20:20:25.623Z <MQTTController:WARN> MQTTController#mqtt file xiaofang_motion_light_sensor.yaml in /home/homebridge/reactor/config/mqtt_templates/xiaofang_motion_light_sensor.yaml overrides existing template definition xiaofang_motion_light_sensor
                    [latest-24152]2024-06-05T20:20:25.623Z <MQTTController:WARN> MQTTController#mqtt file zigbee2mqtt_common.yaml in /home/homebridge/reactor/config/mqtt_templates/zigbee2mqtt_common.yaml overrides existing template definition zigbee2mqtt_availability
                    [latest-24152]2024-06-05T20:20:25.623Z <MQTTController:WARN> MQTTController#mqtt file zigbee2mqtt_common.yaml in /home/homebridge/reactor/config/mqtt_templates/zigbee2mqtt_common.yaml overrides existing template definition zigbee2mqtt_availability_no_get
                    [latest-24152]2024-06-05T20:20:25.623Z <MQTTController:WARN> MQTTController#mqtt file zigbee2mqtt_common.yaml in /home/homebridge/reactor/config/mqtt_templates/zigbee2mqtt_common.yaml overrides existing template definition zigbee2mqtt_lqi
                    [latest-24152]2024-06-05T20:20:25.623Z <MQTTController:WARN> MQTTController#mqtt file zigbee2mqtt_common.yaml in /home/homebridge/reactor/config/mqtt_templates/zigbee2mqtt_common.yaml overrides existing template definition zigbee2mqtt_ota
                    [latest-24152]2024-06-05T20:20:25.624Z <MQTTController:WARN> MQTTController#mqtt file zigbee2mqtt_common.yaml in /home/homebridge/reactor/config/mqtt_templates/zigbee2mqtt_common.yaml overrides existing template definition zigbee2mqtt_power_switch
                    [latest-24152]2024-06-05T20:20:25.624Z <MQTTController:WARN> MQTTController#mqtt file zigbee2mqtt_common.yaml in /home/homebridge/reactor/config/mqtt_templates/zigbee2mqtt_common.yaml overrides existing template definition zigbee2mqtt_dimming
                    [latest-24152]2024-06-05T20:20:25.624Z <MQTTController:WARN> MQTTController#mqtt file zigbee2mqtt_common.yaml in /home/homebridge/reactor/config/mqtt_templates/zigbee2mqtt_common.yaml overrides existing template definition zigbee2mqtt_battery_power
                    [latest-24152]2024-06-05T20:20:25.624Z <MQTTController:WARN> MQTTController#mqtt file zigbee2mqtt_ikea_tradfri_control_outlet.yaml in /home/homebridge/reactor/config/mqtt_templates/zigbee2mqtt_ikea_tradfri_control_outlet.yaml overrides existing template definition zigbee2mqtt_tradfri_control_outlet
                    [latest-24152]2024-06-05T20:20:25.625Z <MQTTController:WARN> MQTTController#mqtt file zigbee2mqtt_ikea_tradfri_light_bulb.yaml in /home/homebridge/reactor/config/mqtt_templates/zigbee2mqtt_ikea_tradfri_light_bulb.yaml overrides existing template definition zigbee2mqtt_tradfri_light_bulb
                    [latest-24152]2024-06-05T20:20:25.625Z <MQTTController:WARN> MQTTController#mqtt file zigbee2mqtt_ikea_tradfri_light_bulb.yaml in /home/homebridge/reactor/config/mqtt_templates/zigbee2mqtt_ikea_tradfri_light_bulb.yaml overrides existing template definition zigbee2mqtt_tradfri_light_bulb_d
                    [latest-24152]2024-06-05T20:20:25.626Z <MQTTController:WARN> MQTTController#mqtt file zigbee2mqtt_ikea_tradfri_light_bulb_ws.yaml in /home/homebridge/reactor/config/mqtt_templates/zigbee2mqtt_ikea_tradfri_light_bulb_ws.yaml overrides existing template definition zigbee2mqtt_tradfri_light_bulb_ws
                    [latest-24152]2024-06-05T20:20:25.626Z <MQTTController:WARN> MQTTController#mqtt file zigbee2mqtt_ikea_tradfri_light_bulb_ws.yaml in /home/homebridge/reactor/config/mqtt_templates/zigbee2mqtt_ikea_tradfri_light_bulb_ws.yaml overrides existing template definition zigbee2mqtt_tradfri_light_bulb_ws_d
                    [latest-24152]2024-06-05T20:20:25.626Z <MQTTController:WARN> MQTTController#mqtt file zigbee2mqtt_tuya_door_sensor.yaml in /home/homebridge/reactor/config/mqtt_templates/zigbee2mqtt_tuya_door_sensor.yaml overrides existing template definition zigbee2mqtt_tuya_door_sensor
                    [latest-24152]2024-06-05T20:20:25.626Z <MQTTController:WARN> MQTTController#mqtt file zigbee2mqtt_tuya_light_bulb_rgbcw.yaml in /home/homebridge/reactor/config/mqtt_templates/zigbee2mqtt_tuya_light_bulb_rgbcw.yaml overrides existing template definition zigbee2mqtt_tuya_light_bulb_rgbcw
                    [latest-24152]2024-06-05T20:20:25.626Z <MQTTController:WARN> MQTTController#mqtt file zigbee2mqtt_tuya_occupancy_illuminance.yaml in /home/homebridge/reactor/config/mqtt_templates/zigbee2mqtt_tuya_occupancy_illuminance.yaml overrides existing template definition zigbee2mqtt_tuya_motion_light_sensor
                    [latest-24152]2024-06-05T20:20:25.626Z <MQTTController:WARN> MQTTController#mqtt file zigbee2mqtt_tuya_occupancy_illuminance.yaml in /home/homebridge/reactor/config/mqtt_templates/zigbee2mqtt_tuya_occupancy_illuminance.yaml overrides existing template definition zigbee2mqtt_tuya_light_motion_sensor
                    [latest-24152]2024-06-05T20:20:25.627Z <MQTTController:WARN> MQTTController#mqtt file zigbee2mqtt_tuya_smart_plug_pm.yaml in /home/homebridge/reactor/config/mqtt_templates/zigbee2mqtt_tuya_smart_plug_pm.yaml overrides existing template definition zigbee2mqtt_tuya_smart_plug_pm
                    [latest-24152]2024-06-05T20:20:25.628Z <Controller:NOTICE> Controller VirtualEntityController#virtual is now online.
                    [latest-24152]2024-06-05T20:20:25.642Z <ScheduleController:INFO> ScheduleController#scheman entity ValueSensor#scheman>weekends edge "22:00" active, setting primary attribute value to natt
                    [latest-24152]2024-06-05T20:20:25.651Z <HassController:NOTICE> HassController#hass connected, starting protocol
                    [latest-24152]2024-06-05T20:20:25.654Z <HassController:INFO> HassController#hass successful authentication with ws://xxx.xxx.xxx.xxx; fetching initial data...
                    [latest-24152]2024-06-05T20:20:25.658Z <MQTTController:WARN> MQTTController#mqtt file zigbee2mqtt_xiaomi_aqara_mini_switch.yaml in /home/homebridge/reactor/config/mqtt_templates/zigbee2mqtt_xiaomi_aqara.zip/zigbee2mqtt_xiaomi_aqara_mini_switch.yaml overrides existing template definition zigbee2mqtt_aqara_mini_switch
                    [latest-24152]2024-06-05T20:20:25.658Z <HassController:INFO> HassController#hass Hass reports version "2024.5.5" location Hem timezone Europe/Stockholm state RUNNING safe_mode false
                    [latest-24152]2024-06-05T20:20:25.661Z <MQTTController:WARN> MQTTController#mqtt file zigbee2mqtt_xiaomi_aqara_occupancy_illuminance.yaml in /home/homebridge/reactor/config/mqtt_templates/zigbee2mqtt_xiaomi_aqara.zip/zigbee2mqtt_xiaomi_aqara_occupancy_illuminance.yaml overrides existing template definition zigbee2mqtt_aqara_motion_light_sensor
                    [latest-24152]2024-06-05T20:20:25.661Z <MQTTController:WARN> MQTTController#mqtt file zigbee2mqtt_xiaomi_aqara_occupancy_illuminance.yaml in /home/homebridge/reactor/config/mqtt_templates/zigbee2mqtt_xiaomi_aqara.zip/zigbee2mqtt_xiaomi_aqara_occupancy_illuminance.yaml overrides existing template definition zigbee2mqtt_aqara_light_motion_sensor
                    [latest-24152]2024-06-05T20:20:25.664Z <MQTTController:INFO> MQTTController#mosquitto-mqtt instance topic ident is mosquitto-mqtt
                    [latest-24152]2024-06-05T20:20:25.669Z <Controller:INFO> MQTTController#mosquitto-mqtt 0 dead entities older than 86400000s purged
                    [latest-24152]2024-06-05T20:20:25.669Z <MQTTController:NOTICE> MQTTController#mosquitto-mqtt connecting to broker at mqtt://127.0.0.1:1885/
                    [latest-24152]2024-06-05T20:20:25.686Z <MQTTController:WARN> MQTTController#mqtt file zigbee2mqtt_xiaomi_aqara_temperature_humidity.yaml in /home/homebridge/reactor/config/mqtt_templates/zigbee2mqtt_xiaomi_aqara.zip/zigbee2mqtt_xiaomi_aqara_temperature_humidity.yaml overrides existing template definition zigbee2mqtt_aqara_sensor_temperature_humidity
                    [latest-24152]2024-06-05T20:20:25.686Z <MQTTController:WARN> MQTTController#mqtt file zigbee2mqtt_xiaomi_aqara_temperature_humidity.yaml in /home/homebridge/reactor/config/mqtt_templates/zigbee2mqtt_xiaomi_aqara.zip/zigbee2mqtt_xiaomi_aqara_temperature_humidity.yaml overrides existing template definition zigbee2mqtt_aqara_sensor_humidity_temperature
                    [latest-24152]2024-06-05T20:20:25.687Z <MQTTController:INFO> MQTTController#mqtt instance topic ident is mqtt
                    [latest-24152]2024-06-05T20:20:25.689Z <Controller:INFO> MQTTController#mqtt 0 dead entities older than 86400000s purged
                    [latest-24152]2024-06-05T20:20:25.689Z <MQTTController:NOTICE> MQTTController#mqtt connecting to broker at mqtt://127.0.0.1:1888/
                    [latest-24152]2024-06-05T20:20:25.690Z <app:NOTICE> Starting HTTP server and API...
                    [latest-24152]2024-06-05T20:20:25.692Z <httpapi:NOTICE> [HTTPAPI]#1 starting HTTP service on port 8111
                    [latest-24152]2024-06-05T20:20:25.695Z <app:NOTICE> Starting Reaction Engine...
                    [latest-24152]2024-06-05T20:20:25.695Z <Engine:INFO> Reaction Engine starting
                    [latest-24152]2024-06-05T20:20:25.696Z <Engine:INFO> Checking rule sets...
                    [latest-24152]2024-06-05T20:20:25.697Z <Engine:INFO> Checking rules...
                    [latest-24152]2024-06-05T20:20:25.750Z <Engine:INFO> Data check complete; no corrections.
                    --- Rules redacted to posting limits
                    [latest-24152]2024-06-05T20:20:25.883Z <httpapi:NOTICE> [HTTPAPI]#1 HTTP server listening on "0.0.0.0":8111
                    [latest-24152]2024-06-05T20:20:25.896Z <httpapi:INFO> [HTTPAPI]#1 local docs found in /home/homebridge/reactor/docs/html; setting up static service
                    [latest-24152]2024-06-05T20:20:25.897Z <app:NOTICE> Starting WSAPI...
                    [latest-24152]2024-06-05T20:20:25.898Z <wsapi:NOTICE> wsapi: starting version 24148
                    [latest-24152]2024-06-05T20:20:25.919Z <Engine:INFO> [Engine]Engine#1 master timer tick, local time "2024-06-05 22:20:25" (TZ offset 120 mins from UTC)
                    [latest-24152]2024-06-05T20:20:25.966Z <Controller:INFO> VeraController#vera 0 dead entities older than 86400000s purged
                    [latest-24152]2024-06-05T20:20:25.968Z <Controller:NOTICE> Controller VeraController#vera is now online.
                    [latest-24152]2024-06-05T20:20:25.973Z <MQTTController:INFO> MQTTController#mosquitto-mqtt connected; opening subscriptions
                    [latest-24152]2024-06-05T20:20:25.978Z <HassController:NOTICE> HassController#hass no signature match for update.home_assistant_supervisor_update
                    [latest-24152]2024-06-05T20:20:25.979Z <HassController:NOTICE> HassController#hass no signature match for update.home_assistant_core_update
                    [latest-24152]2024-06-05T20:20:25.979Z <HassController:NOTICE> HassController#hass no signature match for update.terminal_ssh_update
                    [latest-24152]2024-06-05T20:20:25.979Z <HassController:NOTICE> HassController#hass no signature match for update.esphome_update
                    [latest-24152]2024-06-05T20:20:25.979Z <HassController:NOTICE> HassController#hass no signature match for update.file_editor_update
                    [latest-24152]2024-06-05T20:20:25.979Z <HassController:NOTICE> HassController#hass no signature match for update.home_assistant_operating_system_update
                    [latest-24152]2024-06-05T20:20:25.980Z <HassController:NOTICE> HassController#hass no signature match for conversation.home_assistant
                    [latest-24152]2024-06-05T20:20:25.980Z <HassController:NOTICE> HassController#hass no signature match for sun.sun
                    [latest-24152]2024-06-05T20:20:25.982Z <HassController:NOTICE> HassController#hass no signature match for remote.samsung_vardagsrummet
                    [latest-24152]2024-06-05T20:20:26.005Z <HassController:NOTICE> HassController#hass no signature match for update.infopanel_hall_firmware
                    [latest-24152]2024-06-05T20:20:26.009Z <Controller:INFO> HassController#hass 0 dead entities older than 86400000s purged
                    [latest-24152]2024-06-05T20:20:26.020Z <MQTTController:INFO> MQTTController#mosquitto-mqtt sending inits and going online!
                    [latest-24152]2024-06-05T20:20:26.021Z <Controller:NOTICE> Controller MQTTController#mosquitto-mqtt is now online.
                    [latest-24152]2024-06-05T20:20:26.025Z <MQTTController:NOTICE> MQTTController#mosquitto-mqtt received LWT (shellies/shellyix3-98CDAC2F5883/online) for ljussensor
                    [latest-24152]2024-06-05T20:20:26.026Z <MQTTController:NOTICE> MQTTController#mosquitto-mqtt received LWT (shellies/shellyplug-s-80646F811E35/online) for server
                    [latest-24152]2024-06-05T20:20:26.029Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending shellies/shellyplug-s-80646F811E35/command with 6 byte payload to server
                    [latest-24152]2024-06-05T20:20:26.033Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending shellies/shellyuni-C45BBE6C6DE8/command with 6 byte payload to poolvarmepump
                    [latest-24152]2024-06-05T20:20:26.034Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Datarummet/get with 12 byte payload to datarummet
                    [latest-24152]2024-06-05T20:20:26.035Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Sovrummet/get with 12 byte payload to sovrummet
                    [latest-24152]2024-06-05T20:20:26.035Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Milia/get with 12 byte payload to milia
                    [latest-24152]2024-06-05T20:20:26.035Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Hallen 1/get with 12 byte payload to hallen1
                    [latest-24152]2024-06-05T20:20:26.035Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Hallen 2/get with 12 byte payload to hallen2
                    [latest-24152]2024-06-05T20:20:26.035Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Hallen 3/get with 12 byte payload to hallen3
                    [latest-24152]2024-06-05T20:20:26.036Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Fönster köket/get with 12 byte payload to fonster_koket
                    [latest-24152]2024-06-05T20:20:26.036Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Soffan/get with 12 byte payload to soffan
                    [latest-24152]2024-06-05T20:20:26.036Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Framsida/get with 12 byte payload to framsida
                    [latest-24152]2024-06-05T20:20:26.036Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Skänk/get with 12 byte payload to skank
                    [latest-24152]2024-06-05T20:20:26.036Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Baksida/get with 12 byte payload to baksida
                    [latest-24152]2024-06-05T20:20:26.036Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Lampa spel/get with 12 byte payload to lampa_spel
                    [latest-24152]2024-06-05T20:20:26.037Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Ellas rum/get with 12 byte payload to lampa_ella
                    [latest-24152]2024-06-05T20:20:26.037Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Lampa gym/get with 12 byte payload to lampa_gym
                    [latest-24152]2024-06-05T20:20:26.037Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Lampa TV/get with 12 byte payload to lampa_tv
                    [latest-24152]2024-06-05T20:20:26.037Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Vitrinskåp/get with 12 byte payload to vitrinskap
                    [latest-24152]2024-06-05T20:20:26.037Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending shellies/shelly1-34945471EBCF/relay/0/command with 6 byte payload to vvb
                    [latest-24152]2024-06-05T20:20:26.037Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Jul Framsida/get with 12 byte payload to jul_framsida
                    [latest-24152]2024-06-05T20:20:26.037Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Jul Köket/get with 12 byte payload to jul_köket
                    [latest-24152]2024-06-05T20:20:26.038Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Jul Sovrummet/get with 12 byte payload to jul_sovrummet
                    [latest-24152]2024-06-05T20:20:26.038Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Jul Datarummet/get with 12 byte payload to jul_datarummet
                    [latest-24152]2024-06-05T20:20:26.038Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Element gillestugan/get with 12 byte payload to element_gillestugan
                    [latest-24152]2024-06-05T20:20:26.038Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Växtbelysning källare/get with 12 byte payload to vaxtbelysning_kallare
                    [latest-24152]2024-06-05T20:20:26.038Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Kompressor/get with 12 byte payload to kompressor
                    [latest-24152]2024-06-05T20:20:26.038Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Luftrenare/get with 12 byte payload to luftrenare
                    [latest-24152]2024-06-05T20:20:26.038Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Uttag uterummet/get with 12 byte payload to uttag_uterummet
                    [latest-24152]2024-06-05T20:20:26.039Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Entrebelysning/get with 12 byte payload to entrebelysning
                    [latest-24152]2024-06-05T20:20:26.039Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Lampa uterummet/get with 12 byte payload to lampa_uterummet
                    [latest-24152]2024-06-05T20:20:26.050Z <Controller:NOTICE> Controller HassController#hass is now online.
                    [latest-24152]2024-06-05T20:20:26.051Z <MQTTController:INFO> MQTTController#mqtt connected; opening subscriptions
                    [latest-24152]2024-06-05T20:20:26.062Z <MQTTController:ERR> MQTTController#mosquitto-mqtt event handler failed for zigbee2mqtt/Rörelse förrådet on rorelse_forradet: [ReferenceError] Capability string_sensor not extended (mosquitto-mqtt>rorelse_forradet [-]
                    [latest-24152]2024-06-05T20:20:26.062Z <MQTTController:CRIT> ReferenceError: Capability string_sensor not extended (mosquitto-mqtt>rorelse_forradet [-]
                    ReferenceError: Capability string_sensor not extended (mosquitto-mqtt>rorelse_forradet
                        at Entity.setAttribute (/home/homebridge/reactor/server/lib/Entity.js:465:19)
                        at MQTTController.handle_event (/home/homebridge/reactor/config/ext/MQTTController/MQTTController.js:1240:19)
                        at MqttClient.<anonymous> (/home/homebridge/reactor/config/ext/MQTTController/MQTTController.js:591:38)
                        at MqttClient.emit (node:events:519:28)
                        at MqttClient.emit (node:domain:488:12)
                        at MqttClient._handlePublish (/home/homebridge/reactor/config/ext/MQTTController/node_modules/mqtt/lib/client.js:1551:12)
                        at MqttClient._handlePacket (/home/homebridge/reactor/config/ext/MQTTController/node_modules/mqtt/lib/client.js:533:12)
                        at work (/home/homebridge/reactor/config/ext/MQTTController/node_modules/mqtt/lib/client.js:436:12)
                        at process.processTicksAndRejections (node:internal/process/task_queues:77:11)
                    [latest-24152]2024-06-05T20:20:26.063Z <MQTTController:ERR> MQTTController#mosquitto-mqtt event handler failed for zigbee2mqtt/Sovrumsdörr on sovrumsdorr: [ReferenceError] Capability string_sensor not extended (mosquitto-mqtt>sovrumsdörr [-]
                    [latest-24152]2024-06-05T20:20:26.063Z <MQTTController:CRIT> ReferenceError: Capability string_sensor not extended (mosquitto-mqtt>sovrumsdorr [-]
                    ReferenceError: Capability string_sensor not extended (mosquitto-mqtt>sovrumsdorr
                        at Entity.setAttribute (/home/homebridge/reactor/server/lib/Entity.js:465:19)
                        at MQTTController.handle_event (/home/homebridge/reactor/config/ext/MQTTController/MQTTController.js:1240:19)
                        at MqttClient.<anonymous> (/home/homebridge/reactor/config/ext/MQTTController/MQTTController.js:591:38)
                        at MqttClient.emit (node:events:519:28)
                        at MqttClient.emit (node:domain:488:12)
                        at MqttClient._handlePublish (/home/homebridge/reactor/config/ext/MQTTController/node_modules/mqtt/lib/client.js:1551:12)
                        at MqttClient._handlePacket (/home/homebridge/reactor/config/ext/MQTTController/node_modules/mqtt/lib/client.js:533:12)
                        at work (/home/homebridge/reactor/config/ext/MQTTController/node_modules/mqtt/lib/client.js:436:12)
                        at process.processTicksAndRejections (node:internal/process/task_queues:77:11)
                    [latest-24152]2024-06-05T20:20:26.071Z <MQTTController:NOTICE> MQTTController#mosquitto-mqtt received LWT (shellies/shellyuni-C45BBE6C6DE8/online) for poolvarmepump
                    [latest-24152]2024-06-05T20:20:26.072Z <MQTTController:NOTICE> MQTTController#mosquitto-mqtt received LWT (shellies/shellyplug-s-80646F811E35/online) for server
                    [latest-24152]2024-06-05T20:20:26.074Z <MQTTController:INFO> MQTTController#mqtt sending inits and going online!
                    [latest-24152]2024-06-05T20:20:26.075Z <Controller:NOTICE> Controller MQTTController#mqtt is now online.
                    

                    reactor.yaml

                    "sovrumsdorr":
                      name: "Sovrumsdörr"
                      topic: "Sovrumsdörr"
                      include: zigbee2mqtt_tuya_door_sensor
                    
                    CrilleC 1 Reply Last reply
                    0
                    • CrilleC Crille

                      OK, here goes.
                      [1/2]
                      Reactor latest-24152 bare metal.
                      MQTTController 24144.

                      I can't figure this out
                      "MQTTController:CRIT ReferenceError: Capability string_sensor not extended (mosquitto-mqtt>sovrumsdorr [-]"

                      reactor.log

                      [latest-24152]2024-06-05T20:20:25.153Z <app:null> Reactor build latest-24152-3455578a starting on v20.13.1 /usr/local/bin/node
                      [latest-24152]2024-06-05T20:20:25.153Z <app:null> Process ID 317180 user/group 1000/1000; bare-metal; platform linux/x64 #117-Ubuntu SMP Fri Apr 26 12:26:49 UTC 2024; locale sv_SE.utf8
                      [latest-24152]2024-06-05T20:20:25.154Z <app:null> Basedir /home/homebridge/reactor; data in /home/homebridge/reactor/storage
                      [latest-24152]2024-06-05T20:20:25.154Z <app:null> NODE_PATH=/home/homebridge/reactor
                      [latest-24152]2024-06-05T20:20:25.169Z <app:null> Resolved timezone=Europe/Stockholm, environment TZ=(undefined); offset minutes from UTC=120
                      [latest-24152]2024-06-05T20:20:25.171Z <app:null> Configured locale sv-SE; selected locale(s) sv-SE
                      [latest-24152]2024-06-05T20:20:25.177Z <app:null> Loaded locale sv-SE for sv-SE
                      [latest-24152]2024-06-05T20:20:25.178Z <app:null> Local date/time using configured timezone and locale formatting is "2024-06-05 22:20:25"
                      [latest-24152]2024-06-05T20:20:25.180Z <Structure:null> Module Structure v24110
                      [latest-24152]2024-06-05T20:20:25.181Z <Capabilities:null> Module Capabilities v23331
                      [latest-24152]2024-06-05T20:20:25.191Z <Capabilities:NOTICE> System capabilities loaded from core distribution, data version 24108 revision 1
                      [latest-24152]2024-06-05T20:20:25.197Z <Plugin:null> Module Plugin v22300
                      [latest-24152]2024-06-05T20:20:25.214Z <TimerBroker:null> Module TimerBroker v22283
                      [latest-24152]2024-06-05T20:20:25.216Z <Entity:null> Module Entity v24138
                      [latest-24152]2024-06-05T20:20:25.218Z <Controller:null> Module Controller v24099
                      [latest-24152]2024-06-05T20:20:25.232Z <default:null> Module Ruleset v24099
                      [latest-24152]2024-06-05T20:20:25.232Z <default:null> Module Rulesets v24099
                      [latest-24152]2024-06-05T20:20:25.250Z <GlobalExpression:null> Module GlobalExpression v24099
                      [latest-24152]2024-06-05T20:20:25.275Z <Predicate:null> Module Predicate v23093
                      [latest-24152]2024-06-05T20:20:25.277Z <AlertManager:null> Module AlertManager v24099
                      [latest-24152]2024-06-05T20:20:25.278Z <Rule:null> Module Rule v24149
                      [latest-24152]2024-06-05T20:20:25.280Z <GlobalReaction:null> Module GlobalReaction v24099
                      [latest-24152]2024-06-05T20:20:25.289Z <Engine:null> Module Engine v24113
                      [latest-24152]2024-06-05T20:20:25.292Z <httpapi:null> Module httpapi v24148
                      [latest-24152]2024-06-05T20:20:25.298Z <wsapi:null> Module wsapi v24148
                      [latest-24152]2024-06-05T20:20:25.299Z <app:NOTICE> Starting Structure...
                      [latest-24152]2024-06-05T20:20:25.308Z <Structure:INFO> Structure#1 loading controller interface vera (VeraController)
                      [latest-24152]2024-06-05T20:20:25.331Z <TaskQueue:null> Module TaskQueue 24138
                      [latest-24152]2024-06-05T20:20:25.332Z <VeraController:null> Module VeraController v24050
                      [latest-24152]2024-06-05T20:20:25.375Z <Structure:INFO> Structure#1 loading controller interface ezlo (EzloController)
                      [latest-24152]2024-06-05T20:20:25.381Z <EzloController:null> Module EzloController v23345
                      [latest-24152]2024-06-05T20:20:25.384Z <Structure:INFO> Structure#1 loading controller interface groups (DynamicGroupController)
                      [latest-24152]2024-06-05T20:20:25.386Z <DynamicGroupController:null> Module DynamicGroupController v24128
                      [latest-24152]2024-06-05T20:20:25.390Z <Structure:INFO> Structure#1 loading controller interface virtual (VirtualEntityController)
                      [latest-24152]2024-06-05T20:20:25.393Z <VirtualEntityController:null> Module VirtualEntityController v24147
                      [latest-24152]2024-06-05T20:20:25.395Z <Structure:INFO> Structure#1 loading controller interface hass (HassController)
                      [latest-24152]2024-06-05T20:20:25.399Z <HassController:null> Module HassController v24146
                      [latest-24152]2024-06-05T20:20:25.450Z <Structure:INFO> Structure#1 loading controller interface reactor_system (SystemController)
                      [latest-24152]2024-06-05T20:20:25.452Z <SystemController:null> Module SystemController v24076
                      [latest-24152]2024-06-05T20:20:25.453Z <Structure:INFO> Structure#1 loading controller interface scheman (ScheduleController)
                      [latest-24152]2024-06-05T20:20:25.455Z <ScheduleController:null> Module ScheduleController v24097
                      [latest-24152]2024-06-05T20:20:25.455Z <Controller:INFO> Loaded ScheduleController version "0.1.24097"; Patrick Rigney/Kedron Holdings LLC <patrick@toggledbits.com>
                      [latest-24152]2024-06-05T20:20:25.456Z <Structure:INFO> Structure#1 loading controller interface mosquitto-mqtt (MQTTController)
                      [latest-24152]2024-06-05T20:20:25.459Z <MQTTController:null> Module MQTTController v24144
                      [latest-24152]2024-06-05T20:20:25.491Z <Controller:INFO> Loaded MQTTController version "0.2.24144"; Patrick Rigney/Kedron Holdings LLC <patrick@toggledbits.com> https://reactor.toggledbits.com/docs/MQTTController/
                      [latest-24152]2024-06-05T20:20:25.503Z <Structure:INFO> Structure#1 loading controller interface mqtt (MQTTController)
                      [latest-24152]2024-06-05T20:20:25.503Z <Controller:INFO> Loaded MQTTController version "0.2.24144"; Patrick Rigney/Kedron Holdings LLC <patrick@toggledbits.com> https://reactor.toggledbits.com/docs/MQTTController/
                      [latest-24152]2024-06-05T20:20:25.507Z <Structure:INFO> Starting controller VeraController#vera
                      [latest-24152]2024-06-05T20:20:25.507Z <VeraController:NOTICE> VeraController#vera starting...
                      [latest-24152]2024-06-05T20:20:25.510Z <Controller:INFO> VeraController#vera loaded vera capabilities ver 22253 rev 1 format 1
                      [latest-24152]2024-06-05T20:20:25.521Z <Controller:INFO> VeraController#vera loaded implementation data ver 23109 rev 1 format 1
                      [latest-24152]2024-06-05T20:20:25.521Z <Structure:INFO> Starting controller EzloController#ezlo
                      [latest-24152]2024-06-05T20:20:25.523Z <Controller:INFO> EzloController#ezlo loaded ezlo capabilities ver 22266 rev 1 format 1
                      [latest-24152]2024-06-05T20:20:25.528Z <Controller:INFO> EzloController#ezlo loaded implementation data ver 22344 rev 1 format 1
                      [latest-24152]2024-06-05T20:20:25.528Z <Structure:INFO> Starting controller DynamicGroupController#groups
                      [latest-24152]2024-06-05T20:20:25.530Z <Controller:NOTICE> Controller DynamicGroupController#groups is now online.
                      [latest-24152]2024-06-05T20:20:25.530Z <Structure:INFO> Starting controller VirtualEntityController#virtual
                      [latest-24152]2024-06-05T20:20:25.531Z <Controller:INFO> VirtualEntityController#virtual loaded virtualentity capabilities ver 22263 rev 2 format 1
                      [latest-24152]2024-06-05T20:20:25.532Z <Controller:INFO> VirtualEntityController#virtual loaded implementation data ver 22280 rev 1 format 1
                      [latest-24152]2024-06-05T20:20:25.532Z <Structure:INFO> Starting controller HassController#hass
                      [latest-24152]2024-06-05T20:20:25.532Z <HassController:NOTICE> HassController#hass starting...
                      [latest-24152]2024-06-05T20:20:25.533Z <Controller:INFO> HassController#hass loaded hass capabilities ver 23289 rev 1 format 1
                      [latest-24152]2024-06-05T20:20:25.536Z <Controller:INFO> HassController#hass loaded implementation data ver 24146 rev 1 format 1
                      [latest-24152]2024-06-05T20:20:25.536Z <Structure:INFO> Starting controller SystemController#reactor_system
                      [latest-24152]2024-06-05T20:20:25.537Z <Controller:NOTICE> Controller SystemController#reactor_system is now online.
                      [latest-24152]2024-06-05T20:20:25.580Z <Structure:INFO> Starting controller ScheduleController#scheman
                      [latest-24152]2024-06-05T20:20:25.580Z <ScheduleController:INFO> ScheduleController#scheman Sun Information entity is reactor_system>sun
                      [latest-24152]2024-06-05T20:20:25.582Z <Controller:NOTICE> Controller ScheduleController#scheman is now online.
                      [latest-24152]2024-06-05T20:20:25.582Z <Structure:INFO> Starting controller MQTTController#mosquitto-mqtt
                      [latest-24152]2024-06-05T20:20:25.583Z <Controller:INFO> MQTTController#mosquitto-mqtt loaded mqtt capabilities ver 22353 rev 1 format 1
                      [latest-24152]2024-06-05T20:20:25.583Z <Controller:INFO> MQTTController#mosquitto-mqtt loaded implementation data ver 24122 rev 1 format 1
                      [latest-24152]2024-06-05T20:20:25.583Z <Structure:INFO> Starting controller MQTTController#mqtt
                      [latest-24152]2024-06-05T20:20:25.583Z <MQTTController:WARN> mqtt_capabilities redefines existing x_mqtt
                      [latest-24152]2024-06-05T20:20:25.584Z <MQTTController:WARN> mqtt_capabilities redefines existing x_mqtt_device
                      [latest-24152]2024-06-05T20:20:25.584Z <Capabilities:INFO> [Capabilities][object Object] overriding capability x_mqtt
                      [latest-24152]2024-06-05T20:20:25.584Z <Capabilities:INFO> [Capabilities][object Object] overriding capability x_mqtt_device
                      [latest-24152]2024-06-05T20:20:25.584Z <Controller:INFO> MQTTController#mqtt loaded mqtt capabilities ver 22353 rev 1 format 1
                      [latest-24152]2024-06-05T20:20:25.584Z <Controller:INFO> MQTTController#mqtt loaded implementation data ver 24122 rev 1 format 1
                      [latest-24152]2024-06-05T20:20:25.587Z <VeraController:INFO> VeraController: deviceclass room capability sys_group does not provide attribute members
                      [latest-24152]2024-06-05T20:20:25.587Z <VeraController:INFO> VeraController: deviceclass room capability sys_group does not provide attribute empty
                      [latest-24152]2024-06-05T20:20:25.588Z <EzloController:INFO> EzloController#ezlo device mapping data loaded; checking...
                      [latest-24152]2024-06-05T20:20:25.588Z <EzloController:WARN> EzloController: implementation of capability battery_maintenance does not provide attribute state
                      [latest-24152]2024-06-05T20:20:25.589Z <HassController:INFO> HassController#hass device mapping data loaded; checking...
                      [latest-24152]2024-06-05T20:20:25.602Z <EzloController:INFO> EzloController#ezlo: connecting to hub "xxxxxx" via anonymous local connection to wss://xxx.xxx.xxx.xxx
                      [latest-24152]2024-06-05T20:20:25.605Z <VirtualEntityController:INFO> VirtualEntityController#virtual configuring virtual Dyr El (dyrEl)
                      [latest-24152]2024-06-05T20:20:25.612Z <VirtualEntityController:INFO> VirtualEntityController#virtual configuring virtual Solar Production Forecast (solar_production_forecast)
                      [latest-24152]2024-06-05T20:20:25.617Z <Controller:INFO> VirtualEntityController#virtual 0 dead entities older than 86400000s purged
                      [latest-24152]2024-06-05T20:20:25.617Z <HassController:NOTICE> HassController#hass connecting to ws://xxx.xxx.xxx.xxx/api/websocket
                      [latest-24152]2024-06-05T20:20:25.622Z <MQTTController:WARN> MQTTController#mqtt file my_tasmota_generic_relay.yaml in /home/homebridge/reactor/config/mqtt_templates/my_tasmota_generic_relay.yaml overrides existing template definition my_tasmota_generic_relay
                      [latest-24152]2024-06-05T20:20:25.622Z <MQTTController:WARN> MQTTController#mqtt file shelly_plug_s.yaml in /home/homebridge/reactor/config/mqtt_templates/shelly_plug_s.yaml overrides existing template definition shelly_plug_s
                      [latest-24152]2024-06-05T20:20:25.622Z <MQTTController:WARN> MQTTController#mqtt file tasmota_sensor_lyw.yaml in /home/homebridge/reactor/config/mqtt_templates/tasmota_sensor_lyw.yaml overrides existing template definition tasmota_sensor_lyw
                      [latest-24152]2024-06-05T20:20:25.623Z <MQTTController:WARN> MQTTController#mqtt file wallbox_pulsar_plus.yaml in /home/homebridge/reactor/config/mqtt_templates/wallbox_pulsar_plus.yaml overrides existing template definition wallbox_pulsar_plus
                      [latest-24152]2024-06-05T20:20:25.623Z <MQTTController:WARN> MQTTController#mqtt file xiaofang_motion_light_sensor.yaml in /home/homebridge/reactor/config/mqtt_templates/xiaofang_motion_light_sensor.yaml overrides existing template definition xiaofang_motion_light_sensor
                      [latest-24152]2024-06-05T20:20:25.623Z <MQTTController:WARN> MQTTController#mqtt file zigbee2mqtt_common.yaml in /home/homebridge/reactor/config/mqtt_templates/zigbee2mqtt_common.yaml overrides existing template definition zigbee2mqtt_availability
                      [latest-24152]2024-06-05T20:20:25.623Z <MQTTController:WARN> MQTTController#mqtt file zigbee2mqtt_common.yaml in /home/homebridge/reactor/config/mqtt_templates/zigbee2mqtt_common.yaml overrides existing template definition zigbee2mqtt_availability_no_get
                      [latest-24152]2024-06-05T20:20:25.623Z <MQTTController:WARN> MQTTController#mqtt file zigbee2mqtt_common.yaml in /home/homebridge/reactor/config/mqtt_templates/zigbee2mqtt_common.yaml overrides existing template definition zigbee2mqtt_lqi
                      [latest-24152]2024-06-05T20:20:25.623Z <MQTTController:WARN> MQTTController#mqtt file zigbee2mqtt_common.yaml in /home/homebridge/reactor/config/mqtt_templates/zigbee2mqtt_common.yaml overrides existing template definition zigbee2mqtt_ota
                      [latest-24152]2024-06-05T20:20:25.624Z <MQTTController:WARN> MQTTController#mqtt file zigbee2mqtt_common.yaml in /home/homebridge/reactor/config/mqtt_templates/zigbee2mqtt_common.yaml overrides existing template definition zigbee2mqtt_power_switch
                      [latest-24152]2024-06-05T20:20:25.624Z <MQTTController:WARN> MQTTController#mqtt file zigbee2mqtt_common.yaml in /home/homebridge/reactor/config/mqtt_templates/zigbee2mqtt_common.yaml overrides existing template definition zigbee2mqtt_dimming
                      [latest-24152]2024-06-05T20:20:25.624Z <MQTTController:WARN> MQTTController#mqtt file zigbee2mqtt_common.yaml in /home/homebridge/reactor/config/mqtt_templates/zigbee2mqtt_common.yaml overrides existing template definition zigbee2mqtt_battery_power
                      [latest-24152]2024-06-05T20:20:25.624Z <MQTTController:WARN> MQTTController#mqtt file zigbee2mqtt_ikea_tradfri_control_outlet.yaml in /home/homebridge/reactor/config/mqtt_templates/zigbee2mqtt_ikea_tradfri_control_outlet.yaml overrides existing template definition zigbee2mqtt_tradfri_control_outlet
                      [latest-24152]2024-06-05T20:20:25.625Z <MQTTController:WARN> MQTTController#mqtt file zigbee2mqtt_ikea_tradfri_light_bulb.yaml in /home/homebridge/reactor/config/mqtt_templates/zigbee2mqtt_ikea_tradfri_light_bulb.yaml overrides existing template definition zigbee2mqtt_tradfri_light_bulb
                      [latest-24152]2024-06-05T20:20:25.625Z <MQTTController:WARN> MQTTController#mqtt file zigbee2mqtt_ikea_tradfri_light_bulb.yaml in /home/homebridge/reactor/config/mqtt_templates/zigbee2mqtt_ikea_tradfri_light_bulb.yaml overrides existing template definition zigbee2mqtt_tradfri_light_bulb_d
                      [latest-24152]2024-06-05T20:20:25.626Z <MQTTController:WARN> MQTTController#mqtt file zigbee2mqtt_ikea_tradfri_light_bulb_ws.yaml in /home/homebridge/reactor/config/mqtt_templates/zigbee2mqtt_ikea_tradfri_light_bulb_ws.yaml overrides existing template definition zigbee2mqtt_tradfri_light_bulb_ws
                      [latest-24152]2024-06-05T20:20:25.626Z <MQTTController:WARN> MQTTController#mqtt file zigbee2mqtt_ikea_tradfri_light_bulb_ws.yaml in /home/homebridge/reactor/config/mqtt_templates/zigbee2mqtt_ikea_tradfri_light_bulb_ws.yaml overrides existing template definition zigbee2mqtt_tradfri_light_bulb_ws_d
                      [latest-24152]2024-06-05T20:20:25.626Z <MQTTController:WARN> MQTTController#mqtt file zigbee2mqtt_tuya_door_sensor.yaml in /home/homebridge/reactor/config/mqtt_templates/zigbee2mqtt_tuya_door_sensor.yaml overrides existing template definition zigbee2mqtt_tuya_door_sensor
                      [latest-24152]2024-06-05T20:20:25.626Z <MQTTController:WARN> MQTTController#mqtt file zigbee2mqtt_tuya_light_bulb_rgbcw.yaml in /home/homebridge/reactor/config/mqtt_templates/zigbee2mqtt_tuya_light_bulb_rgbcw.yaml overrides existing template definition zigbee2mqtt_tuya_light_bulb_rgbcw
                      [latest-24152]2024-06-05T20:20:25.626Z <MQTTController:WARN> MQTTController#mqtt file zigbee2mqtt_tuya_occupancy_illuminance.yaml in /home/homebridge/reactor/config/mqtt_templates/zigbee2mqtt_tuya_occupancy_illuminance.yaml overrides existing template definition zigbee2mqtt_tuya_motion_light_sensor
                      [latest-24152]2024-06-05T20:20:25.626Z <MQTTController:WARN> MQTTController#mqtt file zigbee2mqtt_tuya_occupancy_illuminance.yaml in /home/homebridge/reactor/config/mqtt_templates/zigbee2mqtt_tuya_occupancy_illuminance.yaml overrides existing template definition zigbee2mqtt_tuya_light_motion_sensor
                      [latest-24152]2024-06-05T20:20:25.627Z <MQTTController:WARN> MQTTController#mqtt file zigbee2mqtt_tuya_smart_plug_pm.yaml in /home/homebridge/reactor/config/mqtt_templates/zigbee2mqtt_tuya_smart_plug_pm.yaml overrides existing template definition zigbee2mqtt_tuya_smart_plug_pm
                      [latest-24152]2024-06-05T20:20:25.628Z <Controller:NOTICE> Controller VirtualEntityController#virtual is now online.
                      [latest-24152]2024-06-05T20:20:25.642Z <ScheduleController:INFO> ScheduleController#scheman entity ValueSensor#scheman>weekends edge "22:00" active, setting primary attribute value to natt
                      [latest-24152]2024-06-05T20:20:25.651Z <HassController:NOTICE> HassController#hass connected, starting protocol
                      [latest-24152]2024-06-05T20:20:25.654Z <HassController:INFO> HassController#hass successful authentication with ws://xxx.xxx.xxx.xxx; fetching initial data...
                      [latest-24152]2024-06-05T20:20:25.658Z <MQTTController:WARN> MQTTController#mqtt file zigbee2mqtt_xiaomi_aqara_mini_switch.yaml in /home/homebridge/reactor/config/mqtt_templates/zigbee2mqtt_xiaomi_aqara.zip/zigbee2mqtt_xiaomi_aqara_mini_switch.yaml overrides existing template definition zigbee2mqtt_aqara_mini_switch
                      [latest-24152]2024-06-05T20:20:25.658Z <HassController:INFO> HassController#hass Hass reports version "2024.5.5" location Hem timezone Europe/Stockholm state RUNNING safe_mode false
                      [latest-24152]2024-06-05T20:20:25.661Z <MQTTController:WARN> MQTTController#mqtt file zigbee2mqtt_xiaomi_aqara_occupancy_illuminance.yaml in /home/homebridge/reactor/config/mqtt_templates/zigbee2mqtt_xiaomi_aqara.zip/zigbee2mqtt_xiaomi_aqara_occupancy_illuminance.yaml overrides existing template definition zigbee2mqtt_aqara_motion_light_sensor
                      [latest-24152]2024-06-05T20:20:25.661Z <MQTTController:WARN> MQTTController#mqtt file zigbee2mqtt_xiaomi_aqara_occupancy_illuminance.yaml in /home/homebridge/reactor/config/mqtt_templates/zigbee2mqtt_xiaomi_aqara.zip/zigbee2mqtt_xiaomi_aqara_occupancy_illuminance.yaml overrides existing template definition zigbee2mqtt_aqara_light_motion_sensor
                      [latest-24152]2024-06-05T20:20:25.664Z <MQTTController:INFO> MQTTController#mosquitto-mqtt instance topic ident is mosquitto-mqtt
                      [latest-24152]2024-06-05T20:20:25.669Z <Controller:INFO> MQTTController#mosquitto-mqtt 0 dead entities older than 86400000s purged
                      [latest-24152]2024-06-05T20:20:25.669Z <MQTTController:NOTICE> MQTTController#mosquitto-mqtt connecting to broker at mqtt://127.0.0.1:1885/
                      [latest-24152]2024-06-05T20:20:25.686Z <MQTTController:WARN> MQTTController#mqtt file zigbee2mqtt_xiaomi_aqara_temperature_humidity.yaml in /home/homebridge/reactor/config/mqtt_templates/zigbee2mqtt_xiaomi_aqara.zip/zigbee2mqtt_xiaomi_aqara_temperature_humidity.yaml overrides existing template definition zigbee2mqtt_aqara_sensor_temperature_humidity
                      [latest-24152]2024-06-05T20:20:25.686Z <MQTTController:WARN> MQTTController#mqtt file zigbee2mqtt_xiaomi_aqara_temperature_humidity.yaml in /home/homebridge/reactor/config/mqtt_templates/zigbee2mqtt_xiaomi_aqara.zip/zigbee2mqtt_xiaomi_aqara_temperature_humidity.yaml overrides existing template definition zigbee2mqtt_aqara_sensor_humidity_temperature
                      [latest-24152]2024-06-05T20:20:25.687Z <MQTTController:INFO> MQTTController#mqtt instance topic ident is mqtt
                      [latest-24152]2024-06-05T20:20:25.689Z <Controller:INFO> MQTTController#mqtt 0 dead entities older than 86400000s purged
                      [latest-24152]2024-06-05T20:20:25.689Z <MQTTController:NOTICE> MQTTController#mqtt connecting to broker at mqtt://127.0.0.1:1888/
                      [latest-24152]2024-06-05T20:20:25.690Z <app:NOTICE> Starting HTTP server and API...
                      [latest-24152]2024-06-05T20:20:25.692Z <httpapi:NOTICE> [HTTPAPI]#1 starting HTTP service on port 8111
                      [latest-24152]2024-06-05T20:20:25.695Z <app:NOTICE> Starting Reaction Engine...
                      [latest-24152]2024-06-05T20:20:25.695Z <Engine:INFO> Reaction Engine starting
                      [latest-24152]2024-06-05T20:20:25.696Z <Engine:INFO> Checking rule sets...
                      [latest-24152]2024-06-05T20:20:25.697Z <Engine:INFO> Checking rules...
                      [latest-24152]2024-06-05T20:20:25.750Z <Engine:INFO> Data check complete; no corrections.
                      --- Rules redacted to posting limits
                      [latest-24152]2024-06-05T20:20:25.883Z <httpapi:NOTICE> [HTTPAPI]#1 HTTP server listening on "0.0.0.0":8111
                      [latest-24152]2024-06-05T20:20:25.896Z <httpapi:INFO> [HTTPAPI]#1 local docs found in /home/homebridge/reactor/docs/html; setting up static service
                      [latest-24152]2024-06-05T20:20:25.897Z <app:NOTICE> Starting WSAPI...
                      [latest-24152]2024-06-05T20:20:25.898Z <wsapi:NOTICE> wsapi: starting version 24148
                      [latest-24152]2024-06-05T20:20:25.919Z <Engine:INFO> [Engine]Engine#1 master timer tick, local time "2024-06-05 22:20:25" (TZ offset 120 mins from UTC)
                      [latest-24152]2024-06-05T20:20:25.966Z <Controller:INFO> VeraController#vera 0 dead entities older than 86400000s purged
                      [latest-24152]2024-06-05T20:20:25.968Z <Controller:NOTICE> Controller VeraController#vera is now online.
                      [latest-24152]2024-06-05T20:20:25.973Z <MQTTController:INFO> MQTTController#mosquitto-mqtt connected; opening subscriptions
                      [latest-24152]2024-06-05T20:20:25.978Z <HassController:NOTICE> HassController#hass no signature match for update.home_assistant_supervisor_update
                      [latest-24152]2024-06-05T20:20:25.979Z <HassController:NOTICE> HassController#hass no signature match for update.home_assistant_core_update
                      [latest-24152]2024-06-05T20:20:25.979Z <HassController:NOTICE> HassController#hass no signature match for update.terminal_ssh_update
                      [latest-24152]2024-06-05T20:20:25.979Z <HassController:NOTICE> HassController#hass no signature match for update.esphome_update
                      [latest-24152]2024-06-05T20:20:25.979Z <HassController:NOTICE> HassController#hass no signature match for update.file_editor_update
                      [latest-24152]2024-06-05T20:20:25.979Z <HassController:NOTICE> HassController#hass no signature match for update.home_assistant_operating_system_update
                      [latest-24152]2024-06-05T20:20:25.980Z <HassController:NOTICE> HassController#hass no signature match for conversation.home_assistant
                      [latest-24152]2024-06-05T20:20:25.980Z <HassController:NOTICE> HassController#hass no signature match for sun.sun
                      [latest-24152]2024-06-05T20:20:25.982Z <HassController:NOTICE> HassController#hass no signature match for remote.samsung_vardagsrummet
                      [latest-24152]2024-06-05T20:20:26.005Z <HassController:NOTICE> HassController#hass no signature match for update.infopanel_hall_firmware
                      [latest-24152]2024-06-05T20:20:26.009Z <Controller:INFO> HassController#hass 0 dead entities older than 86400000s purged
                      [latest-24152]2024-06-05T20:20:26.020Z <MQTTController:INFO> MQTTController#mosquitto-mqtt sending inits and going online!
                      [latest-24152]2024-06-05T20:20:26.021Z <Controller:NOTICE> Controller MQTTController#mosquitto-mqtt is now online.
                      [latest-24152]2024-06-05T20:20:26.025Z <MQTTController:NOTICE> MQTTController#mosquitto-mqtt received LWT (shellies/shellyix3-98CDAC2F5883/online) for ljussensor
                      [latest-24152]2024-06-05T20:20:26.026Z <MQTTController:NOTICE> MQTTController#mosquitto-mqtt received LWT (shellies/shellyplug-s-80646F811E35/online) for server
                      [latest-24152]2024-06-05T20:20:26.029Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending shellies/shellyplug-s-80646F811E35/command with 6 byte payload to server
                      [latest-24152]2024-06-05T20:20:26.033Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending shellies/shellyuni-C45BBE6C6DE8/command with 6 byte payload to poolvarmepump
                      [latest-24152]2024-06-05T20:20:26.034Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Datarummet/get with 12 byte payload to datarummet
                      [latest-24152]2024-06-05T20:20:26.035Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Sovrummet/get with 12 byte payload to sovrummet
                      [latest-24152]2024-06-05T20:20:26.035Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Milia/get with 12 byte payload to milia
                      [latest-24152]2024-06-05T20:20:26.035Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Hallen 1/get with 12 byte payload to hallen1
                      [latest-24152]2024-06-05T20:20:26.035Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Hallen 2/get with 12 byte payload to hallen2
                      [latest-24152]2024-06-05T20:20:26.035Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Hallen 3/get with 12 byte payload to hallen3
                      [latest-24152]2024-06-05T20:20:26.036Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Fönster köket/get with 12 byte payload to fonster_koket
                      [latest-24152]2024-06-05T20:20:26.036Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Soffan/get with 12 byte payload to soffan
                      [latest-24152]2024-06-05T20:20:26.036Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Framsida/get with 12 byte payload to framsida
                      [latest-24152]2024-06-05T20:20:26.036Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Skänk/get with 12 byte payload to skank
                      [latest-24152]2024-06-05T20:20:26.036Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Baksida/get with 12 byte payload to baksida
                      [latest-24152]2024-06-05T20:20:26.036Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Lampa spel/get with 12 byte payload to lampa_spel
                      [latest-24152]2024-06-05T20:20:26.037Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Ellas rum/get with 12 byte payload to lampa_ella
                      [latest-24152]2024-06-05T20:20:26.037Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Lampa gym/get with 12 byte payload to lampa_gym
                      [latest-24152]2024-06-05T20:20:26.037Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Lampa TV/get with 12 byte payload to lampa_tv
                      [latest-24152]2024-06-05T20:20:26.037Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Vitrinskåp/get with 12 byte payload to vitrinskap
                      [latest-24152]2024-06-05T20:20:26.037Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending shellies/shelly1-34945471EBCF/relay/0/command with 6 byte payload to vvb
                      [latest-24152]2024-06-05T20:20:26.037Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Jul Framsida/get with 12 byte payload to jul_framsida
                      [latest-24152]2024-06-05T20:20:26.037Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Jul Köket/get with 12 byte payload to jul_köket
                      [latest-24152]2024-06-05T20:20:26.038Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Jul Sovrummet/get with 12 byte payload to jul_sovrummet
                      [latest-24152]2024-06-05T20:20:26.038Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Jul Datarummet/get with 12 byte payload to jul_datarummet
                      [latest-24152]2024-06-05T20:20:26.038Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Element gillestugan/get with 12 byte payload to element_gillestugan
                      [latest-24152]2024-06-05T20:20:26.038Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Växtbelysning källare/get with 12 byte payload to vaxtbelysning_kallare
                      [latest-24152]2024-06-05T20:20:26.038Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Kompressor/get with 12 byte payload to kompressor
                      [latest-24152]2024-06-05T20:20:26.038Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Luftrenare/get with 12 byte payload to luftrenare
                      [latest-24152]2024-06-05T20:20:26.038Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Uttag uterummet/get with 12 byte payload to uttag_uterummet
                      [latest-24152]2024-06-05T20:20:26.039Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Entrebelysning/get with 12 byte payload to entrebelysning
                      [latest-24152]2024-06-05T20:20:26.039Z <MQTTController:INFO> MQTTController#mosquitto-mqtt x_mqtt_device.poll action sending zigbee2mqtt/Lampa uterummet/get with 12 byte payload to lampa_uterummet
                      [latest-24152]2024-06-05T20:20:26.050Z <Controller:NOTICE> Controller HassController#hass is now online.
                      [latest-24152]2024-06-05T20:20:26.051Z <MQTTController:INFO> MQTTController#mqtt connected; opening subscriptions
                      [latest-24152]2024-06-05T20:20:26.062Z <MQTTController:ERR> MQTTController#mosquitto-mqtt event handler failed for zigbee2mqtt/Rörelse förrådet on rorelse_forradet: [ReferenceError] Capability string_sensor not extended (mosquitto-mqtt>rorelse_forradet [-]
                      [latest-24152]2024-06-05T20:20:26.062Z <MQTTController:CRIT> ReferenceError: Capability string_sensor not extended (mosquitto-mqtt>rorelse_forradet [-]
                      ReferenceError: Capability string_sensor not extended (mosquitto-mqtt>rorelse_forradet
                          at Entity.setAttribute (/home/homebridge/reactor/server/lib/Entity.js:465:19)
                          at MQTTController.handle_event (/home/homebridge/reactor/config/ext/MQTTController/MQTTController.js:1240:19)
                          at MqttClient.<anonymous> (/home/homebridge/reactor/config/ext/MQTTController/MQTTController.js:591:38)
                          at MqttClient.emit (node:events:519:28)
                          at MqttClient.emit (node:domain:488:12)
                          at MqttClient._handlePublish (/home/homebridge/reactor/config/ext/MQTTController/node_modules/mqtt/lib/client.js:1551:12)
                          at MqttClient._handlePacket (/home/homebridge/reactor/config/ext/MQTTController/node_modules/mqtt/lib/client.js:533:12)
                          at work (/home/homebridge/reactor/config/ext/MQTTController/node_modules/mqtt/lib/client.js:436:12)
                          at process.processTicksAndRejections (node:internal/process/task_queues:77:11)
                      [latest-24152]2024-06-05T20:20:26.063Z <MQTTController:ERR> MQTTController#mosquitto-mqtt event handler failed for zigbee2mqtt/Sovrumsdörr on sovrumsdorr: [ReferenceError] Capability string_sensor not extended (mosquitto-mqtt>sovrumsdörr [-]
                      [latest-24152]2024-06-05T20:20:26.063Z <MQTTController:CRIT> ReferenceError: Capability string_sensor not extended (mosquitto-mqtt>sovrumsdorr [-]
                      ReferenceError: Capability string_sensor not extended (mosquitto-mqtt>sovrumsdorr
                          at Entity.setAttribute (/home/homebridge/reactor/server/lib/Entity.js:465:19)
                          at MQTTController.handle_event (/home/homebridge/reactor/config/ext/MQTTController/MQTTController.js:1240:19)
                          at MqttClient.<anonymous> (/home/homebridge/reactor/config/ext/MQTTController/MQTTController.js:591:38)
                          at MqttClient.emit (node:events:519:28)
                          at MqttClient.emit (node:domain:488:12)
                          at MqttClient._handlePublish (/home/homebridge/reactor/config/ext/MQTTController/node_modules/mqtt/lib/client.js:1551:12)
                          at MqttClient._handlePacket (/home/homebridge/reactor/config/ext/MQTTController/node_modules/mqtt/lib/client.js:533:12)
                          at work (/home/homebridge/reactor/config/ext/MQTTController/node_modules/mqtt/lib/client.js:436:12)
                          at process.processTicksAndRejections (node:internal/process/task_queues:77:11)
                      [latest-24152]2024-06-05T20:20:26.071Z <MQTTController:NOTICE> MQTTController#mosquitto-mqtt received LWT (shellies/shellyuni-C45BBE6C6DE8/online) for poolvarmepump
                      [latest-24152]2024-06-05T20:20:26.072Z <MQTTController:NOTICE> MQTTController#mosquitto-mqtt received LWT (shellies/shellyplug-s-80646F811E35/online) for server
                      [latest-24152]2024-06-05T20:20:26.074Z <MQTTController:INFO> MQTTController#mqtt sending inits and going online!
                      [latest-24152]2024-06-05T20:20:26.075Z <Controller:NOTICE> Controller MQTTController#mqtt is now online.
                      

                      reactor.yaml

                      "sovrumsdorr":
                        name: "Sovrumsdörr"
                        topic: "Sovrumsdörr"
                        include: zigbee2mqtt_tuya_door_sensor
                      
                      CrilleC Online
                      CrilleC Online
                      Crille
                      wrote on last edited by Crille
                      #16

                      [2/2]

                      zigbee2mqtt_common.yaml

                      # Requires: "topic".
                      # Optional: "prefix" (default: zigbee2mqtt).
                      # mqtt_device.online requires "availability: true" in Zigbee2MQTT config.
                      # https://www.zigbee2mqtt.io/guide/configuration/device-availability.html
                      
                      description: "Zigbee2MQTT base templates"
                      author: "@Crille, Smart Home Community"
                      license: MIT
                      repository: "https://github.com/calmen77/MSR-mqtt_templates"
                      version: 24155
                      
                      templates:
                        # Availability with query
                        zigbee2mqtt_availability:
                          capabilities: [x_mqtt_device]
                          requires: [topic]
                          query:
                            topic: "%prefix:zigbee2mqtt%/%topic%/get"
                            payload:
                              state: ""
                            type: json
                          events:
                            "%prefix:zigbee2mqtt%/%topic%/availability":
                              "x_mqtt_device.online":
                                if_expr: '! isnull(payload)'
                                expr: 'lower(payload) == "online"'
                        # Availability without query for device not supporting /get
                        zigbee2mqtt_availability_no_get:
                          capabilities: [x_mqtt_device]
                          requires: [topic]
                          events:
                            "%prefix:zigbee2mqtt%/%topic%/availability":
                              "x_mqtt_device.online":
                                if_expr: '! isnull(payload)'
                                expr: 'lower(payload) == "online"'
                        # Link quality in lqi
                        zigbee2mqtt_lqi:
                          capabilities: [value_sensor]
                          requires: [topic]
                          events:
                            "%prefix:zigbee2mqtt%/%topic%":
                              "value_sensor.value":
                                json_payload: true
                                if_expr: '! isnull(payload)'
                                expr: 'payload.linkquality'
                              "value_sensor.units": "lqi"
                      # String sensor for available OTA update for device
                        zigbee2mqtt_ota:
                          capabilities: [string_sensor]
                          requires: [topic]
                          events:
                            "%prefix:zigbee2mqtt%/%topic%":
                              "string_sensor.value":
                                json_payload: true
                                if_expr: '! isnull(payload)'
                                expr: 'payload?.update_available ? "OTA firmware update available!" : "no update available"'
                        # Power switch capability
                        zigbee2mqtt_power_switch:
                          capabilities:
                            - power_switch
                            - toggle
                          requires: [topic]
                          events:
                            "%prefix:zigbee2mqtt%/%topic%":
                              "power_switch.state":
                                json_payload: true
                                expr: 'payload?.state == "ON"'
                          actions:
                            power_switch:
                              "on":
                                topic: "%prefix:zigbee2mqtt%/%topic%/set"
                                payload: "ON"
                              "off":
                                topic: "%prefix:zigbee2mqtt%/%topic%/set"
                                payload: "OFF"
                              set:
                                topic: "%prefix:zigbee2mqtt%/%topic%/set"
                                payload:
                                  expr: "parameters.state ? 'on' : 'off'"
                                  type: raw
                        # Dimming capability
                        zigbee2mqtt_dimming:
                          capabilities: [dimming]
                          requires: [topic]
                          events:
                            "%prefix:zigbee2mqtt%/%topic%":
                              "dimming.level":
                                json_payload: true
                                expr: 'round(payload?.brightness / 100 / 2.55 , 2)'
                          actions:
                            dimming:
                              set:
                                topic: "%prefix:zigbee2mqtt%/%topic%/set"
                                payload:
                                  expr: '{"brightness": round(parameters.level * 100 * 2.55 , 2)}'
                                  type: json
                        # Battery level
                        zigbee2mqtt_battery_power:
                          capabilities: [battery_power]
                          requires: [topic]
                          events:
                            "%prefix:zigbee2mqtt%/%topic%":
                              "battery_power.level":
                                json_payload: true
                                expr: 'payload?.battery / 100'
                              "battery_power.since":
                                expr: 'time()'
                          actions:
                            x_mqtt_device:
                              poll: false
                      
                      

                      zigbee2mqtt_tuya_door_sensor.yaml

                      # Requires: "topic".
                      # Optional: "prefix" (default: zigbee2mqtt).
                      # mqtt_device.online requires "availability: true" in Zigbee2MQTT config.
                      # https://www.zigbee2mqtt.io/devices/SNZB-04.html
                      
                      description: "Zigbee2MQTT template for TuYa Smart Door Sensor."
                      author: "@Crille, Smart Home Community"
                      license: MIT
                      repository: "https://github.com/calmen77/MSR-mqtt_templates"
                      version: 24155
                      
                      templates:
                        zigbee2mqtt_tuya_door_sensor:
                          #type:
                          capabilities:
                            - door_sensor
                          primary_attribute: door_sensor.state
                          requires: [topic]
                          include:
                            - zigbee2mqtt_availability_no_get
                            - zigbee2mqtt_lqi
                            - zigbee2mqtt_battery_power
                          events:
                            "%prefix:zigbee2mqtt%/%topic%":
                              "door_sensor.state":
                                json_payload: true
                                expr: 'payload?.contact'
                      
                      1 Reply Last reply
                      0
                      • toggledbitsT Offline
                        toggledbitsT Offline
                        toggledbits
                        wrote on last edited by toggledbits
                        #17

                        Turn debug level 5 on for MQTTController. It will show you how it's loading the templates and building the final entity configuration. The message fragment you'll want to look for is merged template for sovrumsdorr... then work backwards in the log from there to configuring entity sovrumsdorr. Everything in between is the setup.

                        Also examine the debug messages at startup for where it's finding templates and loading them... make sure everything it's loading is what's intended, and you don't have a stray old file sitting around somewhere that it's sucking in.

                        Edit: your logs are showing a lot of duplicate definitions in the startup messages...

                        Author of Multi-system Reactor and Reactor, DelayLight, Switchboard, and about a dozen other plugins that run on Vera and openLuup.

                        CrilleC 1 Reply Last reply
                        0
                        • toggledbitsT toggledbits

                          Turn debug level 5 on for MQTTController. It will show you how it's loading the templates and building the final entity configuration. The message fragment you'll want to look for is merged template for sovrumsdorr... then work backwards in the log from there to configuring entity sovrumsdorr. Everything in between is the setup.

                          Also examine the debug messages at startup for where it's finding templates and loading them... make sure everything it's loading is what's intended, and you don't have a stray old file sitting around somewhere that it's sucking in.

                          Edit: your logs are showing a lot of duplicate definitions in the startup messages...

                          CrilleC Online
                          CrilleC Online
                          Crille
                          wrote on last edited by Crille
                          #18

                          It seems to merge the events: section of string_sensor and power_switch in ...common.yaml and wrap value_sensor.units in string_sensor capability.
                          I've looked for strange characters that could cause it but found nothing, validated all files OK in yamllint.

                          [latest-24152]2024-06-06T06:29:11.699Z <MQTTController:5:MQTTController.js:146> MQTTController#mosquitto-mqtt configuring entity sovrumsdorr
                          [latest-24152]2024-06-06T06:29:11.699Z <MQTTController:5:MQTTController.js:205> MQTTController#mosquitto-mqtt merged template for sovrumsdorr (from /home/homebridge/reactor/config/mqtt_templates/zigbee2mqtt_common.yaml/zigbee2mqtt_common.yaml):
                          {
                              "capabilities": [
                                  "door_sensor",
                                  "x_mqtt_device",
                                  "value_sensor",
                                  "battery_power"
                              ],
                              "primary_attribute": "door_sensor.state",
                              "requires": [
                                  "topic"
                              ],
                              "include": [
                                  "zigbee2mqtt_availability_no_get",
                                  "zigbee2mqtt_lqi",
                                  "zigbee2mqtt_battery_power",
                                  "zigbee2mqtt_tuya_door_sensor"
                              ],
                              "events": {
                                  "%prefix:zigbee2mqtt%/%topic%": {
                                      "door_sensor.state": {
                                          "json_payload": true,
                                          "expr": "payload?.contact"
                                      },
                                      "value_sensor.value": {
                                          "json_payload": true,
                                          "if_expr": "! isnull(payload)",
                                          "expr": "payload.linkquality",
                                          "attribute": "value_sensor.value"
                                      },
                                      "value_sensor.units": "lqi",
                                      "string_sensor.value": {
                                          "json_payload": true,
                                          "if_expr": "! isnull(payload)",
                                          "expr": "payload?.update_available ? \"OTA firmware update available!\" : \"no update available\"",
                                          "attribute": "string_sensor.value"
                                      },
                                      "power_switch.state": {
                                          "json_payload": true,
                                          "expr": "payload?.state == \"ON\"",
                                          "attribute": "power_switch.state"
                                      },
                                      "battery_power.level": {
                                          "json_payload": true,
                                          "expr": "payload?.battery / 100",
                                          "attribute": "battery_power.level"
                                      },
                                      "battery_power.since": {
                                          "expr": "time()",
                                          "attribute": "battery_power.since"
                                      }
                                  },
                                  "%prefix:zigbee2mqtt%/%topic%/availability": {
                                      "x_mqtt_device.online": {
                                          "if_expr": "! isnull(payload)",
                                          "expr": "lower(payload) == \"online\"",
                                          "attribute": "x_mqtt_device.online"
                                      }
                                  }
                              },
                              "__source": "/home/homebridge/reactor/config/mqtt_templates/zigbee2mqtt_common.yaml/zigbee2mqtt_common.yaml",
                              "actions": {
                                  "x_mqtt_device": {
                                      "poll": false
                                  }
                              },
                              "name": "Sovrumsdörr",
                              "topic": "Sovrumsdörr"
                          }
                          [latest-24152]2024-06-06T06:29:11.699Z <MQTTController:5:MQTTController.js:264> MQTTController#mosquitto-mqtt set primary attribute of door_sensor.state to Entity#mosquitto-mqtt>sovrumsdorr
                          [latest-24152]2024-06-06T06:29:11.700Z <MQTTController:5:MQTTController.js:289> MQTTController#mosquitto-mqtt registering event handler %prefix:zigbee2mqtt%/%topic% for sovrumsdorr
                          [latest-24152]2024-06-06T06:29:11.700Z <MQTTController:5:MQTTController.js:289> MQTTController#mosquitto-mqtt registering event handler %prefix:zigbee2mqtt%/%topic%/availability for sovrumsdorr
                          [latest-24152]2024-06-06T06:29:11.700Z <MQTTController:5:MQTTController.js:368> MQTTController#mosquitto-mqtt registering action x_mqtt_device.poll for sovrumsdorr
                          

                          Regarding the duplicates, it could be the templates with different primary_attribute: and it is on my roadmap to bring it up for discussion if attributes also could be parameterized with defaults like %primary_attribute:[temperature / humidity / power_switch / dimming / motion / light]% or %temperature_sensor.units:[C / F]%.

                          EDIT: Or is caused by the mystery of this issue? e.g. string_sensor and power_switch is somehow included in all templates.

                          1 Reply Last reply
                          0
                          • therealdbT Offline
                            therealdbT Offline
                            therealdb
                            wrote on last edited by
                            #19

                            @Crille at some point I had similar problems, I fixed them and I reported here. Now I cannot repro it again, but it seems very similar and related to primary attributes in base templates. It seems like the first one is used and that’s causing troubles along the hierarchy, but, as I said, I’m not able to repro it again.

                            --
                            On a mission to automate everything.

                            My MS Reactor contrib
                            My Luup Plug-ins

                            1 Reply Last reply
                            1
                            • toggledbitsT Offline
                              toggledbitsT Offline
                              toggledbits
                              wrote on last edited by toggledbits
                              #20

                              It also looks like something may be getting a shallow copy when it needs a deep copy, and it's being modified later and polluting the other references. I'm really tied up today, but I'll look at this as soon as I can.

                              Did you address the template redefinitions that were being logged at startup? That has nothing to do with primary attributes; the entire template is trying to be redefined.

                              Author of Multi-system Reactor and Reactor, DelayLight, Switchboard, and about a dozen other plugins that run on Vera and openLuup.

                              CrilleC 1 Reply Last reply
                              0
                              • toggledbitsT toggledbits

                                It also looks like something may be getting a shallow copy when it needs a deep copy, and it's being modified later and polluting the other references. I'm really tied up today, but I'll look at this as soon as I can.

                                Did you address the template redefinitions that were being logged at startup? That has nothing to do with primary attributes; the entire template is trying to be redefined.

                                CrilleC Online
                                CrilleC Online
                                Crille
                                wrote on last edited by
                                #21

                                No rush!

                                @toggledbits said in [Dev] Inheritance in MQTT templates?:

                                Did you address the template redefinitions that were being logged at startup?

                                You mean this?

                                <MQTTController:WARN> MQTTController#mqtt file zigbee2mqtt_tuya_door_sensor.yaml in /home/homebridge/reactor/config/mqtt_templates/zigbee2mqtt_tuya_door_sensor.yaml overrides existing template definition zigbee2mqtt_tuya_door_sensor
                                

                                If so I don't know what to do about it, it's just the template provided in my earlier post and there is no reference/copy of it in the reactor folder/subfolders that I know of.

                                1 Reply Last reply
                                0
                                • toggledbitsT Offline
                                  toggledbitsT Offline
                                  toggledbits
                                  wrote on last edited by
                                  #22

                                  With debug level 5, that message will have another message that follows it to tell you what file originally defined it.

                                  Author of Multi-system Reactor and Reactor, DelayLight, Switchboard, and about a dozen other plugins that run on Vera and openLuup.

                                  CrilleC 1 Reply Last reply
                                  0
                                  • toggledbitsT toggledbits

                                    With debug level 5, that message will have another message that follows it to tell you what file originally defined it.

                                    CrilleC Online
                                    CrilleC Online
                                    Crille
                                    wrote on last edited by
                                    #23

                                    This?

                                    [latest-24152]2024-06-06T19:29:35.079Z <MQTTController:5:MQTTController.js:941> MQTTController#mqtt loading template defs, considering zigbee2mqtt_tuya_door_sensor.yaml
                                    [latest-24152]2024-06-06T19:29:35.079Z <MQTTController:5:MQTTController.js:987> MQTTController#mqtt loading YAML template data from /home/homebridge/reactor/config/mqtt_templates/zigbee2mqt
                                    t_tuya_door_sensor.yaml
                                    [latest-24152]2024-06-06T19:29:35.080Z <MQTTController:WARN> MQTTController#mqtt file zigbee2mqtt_tuya_door_sensor.yaml in /home/homebridge/reactor/config/mqtt_templates/zigbee2mqtt_tuya_do
                                    or_sensor.yaml overrides existing template definition zigbee2mqtt_tuya_door_sensor
                                    [latest-24152]2024-06-06T19:29:35.080Z <MQTTController:5:MQTTController.js:918> MQTTController#mqtt previously defined in /home/homebridge/reactor/config/mqtt_templates/zigbee2mqtt_tuya_doo
                                    r_sensor.yaml/zigbee2mqtt_tuya_door_sensor.yaml
                                    
                                    
                                    1 Reply Last reply
                                    0
                                    • toggledbitsT Offline
                                      toggledbitsT Offline
                                      toggledbits
                                      wrote on last edited by
                                      #24

                                      Uh yes... 😆

                                      Digging in now...

                                      Author of Multi-system Reactor and Reactor, DelayLight, Switchboard, and about a dozen other plugins that run on Vera and openLuup.

                                      1 Reply Last reply
                                      0
                                      • toggledbitsT Offline
                                        toggledbitsT Offline
                                        toggledbits
                                        wrote on last edited by
                                        #25

                                        I need the config for all of your zigbee2mqtt-related entities. Just looking at the one sovrumsdorr, I'm not able to reproduce the problem.

                                        Author of Multi-system Reactor and Reactor, DelayLight, Switchboard, and about a dozen other plugins that run on Vera and openLuup.

                                        1 Reply Last reply
                                        0
                                        • CrilleC Online
                                          CrilleC Online
                                          Crille
                                          wrote on last edited by
                                          #26

                                          Config as in reactor.yaml?

                                          1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          Recent Topics

                                          • Device log?
                                            G
                                            gwp1
                                            0
                                            1
                                            19

                                          • Midnight crossing not working in date/time condition (build 25325)
                                            tunnusT
                                            tunnus
                                            0
                                            3
                                            33

                                          • Error: Command timeout
                                            G
                                            gwp1
                                            0
                                            6
                                            123

                                          • Reactor (Multi-System/Multi-Hub) Announcements
                                            toggledbitsT
                                            toggledbits
                                            5
                                            131
                                            74.8k

                                          • [Solved] Local expression in Rule does not evaluate as they used to do
                                            CrilleC
                                            Crille
                                            0
                                            5
                                            204

                                          • Home Assistant 2025.11.2 and latest-25315
                                            G
                                            gwp1
                                            0
                                            6
                                            228

                                          • Notice to Docker + ARM Users (RPi 3/4/5 and others)
                                            toggledbitsT
                                            toggledbits
                                            1
                                            1
                                            82

                                          • Requesting a proper ARM64/aarch64 Docker image (Pi 5 support)
                                            M
                                            mgvra
                                            1
                                            3
                                            182

                                          • Script action and custom timers
                                            toggledbitsT
                                            toggledbits
                                            0
                                            4
                                            197

                                          • Help resolve change in behaviour post update
                                            CatmanV2C
                                            CatmanV2
                                            0
                                            12
                                            512

                                          • There is an alternative to homebridge-mqttthing
                                            akbooerA
                                            akbooer
                                            1
                                            2
                                            151

                                          • Reactor w/HA 2025.11 error on set_datetime service call setting only time
                                            CrilleC
                                            Crille
                                            0
                                            6
                                            230
                                          Powered by NodeBB | Contributors
                                          Hosted freely by 10RUPTiV - Solutions Technologiques | Contact us
                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • Unsolved