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.
A

ArcherS

@ArcherS
Date/time condition
tunnusT
Topic thumbnail image
Multi-System Reactor
Is there a way to turn this section (image in post) off?
toggledbitsT
Topic thumbnail image
Comments & Feedback
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
There is an alternative to homebridge-mqttthing
CrilleC
Just throwing out a general hint to the people running Homebridge and MQTT. Homebridge MQTT-Thing hasn't been updated in almost 2 years and it falls behind on compatibility with the development of Homebridge. I was looking for a replacement and found Homebridge Easy MQTT and I think it's a good replacement for MQTT-Thing. I particularly find Easy MQTT Value tranformers easier to to understand and use compared to MQTT-Thing Apply function. It took a while to migrate everything but I'm pleased and can recommend.
Software
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
Shelly Wall Display XL
therealdbT
I don't know if you guys are into dashboards, but I am. For a second home I tried the Shelly Wall Display 2, and while not so big, it worked well over the summer. Since we're remodeling our house, I just swapped my old Fire Tablet (with its own problems) with two new Shelly Wall Display XL. I just removed the standard firmware, and I added mine (https://github.com/dbochicchio/ShellyElevate), forked from https://github.com/RapierXbox/ShellyElevate I just managed to support buttons (this thing has 4 of them) and it's all auto-discovered by Home Assistant and accessible via Reactor. I also have a new build in the works with support for buttons inside HA. I added a bonus Javascript interface sending events (screen/screensaver status, buttons, motion) to automatically drive the dashboard (all doing in HTML+Javascript and monitoring Reactor's variable). This specifical thing excluded, go get one of them, the device has a decent CPU for HA dashboards and blends wonderfully in the decor.
Hardware
[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
About
Posts
258
Topics
10
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Power monitoring options
    A ArcherS

    Like @Crille I have an electrical meter with a P1 data port. I use a DIY ESP8266 reader that I described some time ago in this thread. Since writing my post I have changed the software on the ESP, the version I am using now publishes the meter data approx every 10s as a json.

    A good wifi solution for the whole house if lacking a dataport is to use a Shelly 3EM. It is a three clamp meter that can measure all three incoming phases, assuming you have that. I have a few of these for measuring both single and multiple phase consumers, e.g. a two-phase water heater. It reports both energy, power, voltage and current per phase.
    The only downside I can see is that the clamps are a bit big, so some space is required to get them in place around the incoming power lines.

    Vera

  • OpenLuup installation
    A ArcherS

    So I thought I would report back on the restore of openLuup onto my new server.

    What I did was roughly:

    • set up a fresh install of openLuup on my new server
    • stop the old and new server with
      http://192.168.1.xxx:3480/data_request?id=exit
    • copy all the content from the folders "files" and "icons" from the old server to the new server (this I had to do with sudo rights in the Terminal)
    • copy the latest backup file to the backup foder on the new server
    • run the reload openLuup script from the cmh-ludl folder
      ./openLuup_reload backup/backup.openLuup-nnnn.lzap
    • restart the server

    After this the new server contained all the items from the old installation. Most things has worked, but some things did not.

    I had to reinstall the Z-way plugin (plugins->update now button) to get it working, the login fields did not exist (see above) until I did that. After the reinstall I could log in and get it to work.
    I also had to reinstall Reactor and the Telegram plugins (plugins->update now button).
    Reactor said the database was old and the update button was not there so it could not be updated.
    Telegram did not work but everything looked as it should. After the update it worked.
    The only remaining oddity from this error is that I now have a Reactor sensor that I cannot remove. It crashed during editing it before I realised that the plugin did not fully work (it is now empty when I open it, so no delete button).
    I recreated the logic in a new sensor and disabled the old one.
    Any advice on how I can remove the failed sensor would be appreciated. 🙂

    Yesterday I discovered that my Remotec ZRC90 remotes did not work. The sl_CentralScene did not update when pressing the buttons on the remote. Based on the advice in this thread I reinstalled the development version of the Z-way plugin from the App Store and then it worked. Strange problem, unclear what could be the reason for it.

    So a few quirks here and there, it seems as if some data does not survive the restore, unclear why.

    @akbooer is it better to do a reinstall from App Store when restoring a backup of from of from Plugins->update now button? Or should it not matter? 🙂

    As a small side note I also reinstaller Grafana onto the new server. I found a useful tip that it is possible to copy the grafana.db file from the old server to move all of the configuration. This worked perfectly at least on my 8.1.1 installation. The only issue is to make sure to have the same version Grafana on the new server as on the old. This is is easy to do with the help of their webpage.

    openLuup

  • OpenLuup installation
    A ArcherS

    @catmanv2 MSR is definitely on the list of things to setup and try. It seems really nice and a natural step forward from Reactor. 🙂

    openLuup

  • OpenLuup installation
    A ArcherS

    @catmanv2 yes it can quickly become tricky to have back-ups of everything. I have no clear strategy but some bits-and-pieces that I use.

    For the Zway server that is running on a separate Pi I make a complete image with Win32 Disk Imager when I update the server. I run it on a 2.5" ssd, so I have two. That way I can revert back if it crashes hopefully.

    For openLuup I do manual backups (Table Controllers->Backup Controller) before changing things. I keep them on another PC for safe keeping. A fresh install and copying the files and icon folders before running the reload script seems to work ok.

    Now that I look at migrating to Proxmox I will test another strategy. In Proxmox it is super easy to make a complete copy of the VM. This can then be deployed in a few minutes, no need to set everything up from scratch again. My idea is to use this as a fall back also in combination with openLuup backups. Also to use it when testing things on a temporary VM before updating the live VM.

    I have not moved over to MSR yet so thte Reactor logic is part of the openLuup backups.

    The plan is also to run my Home Assistant on the Proxmox server to be able to have a live server and a test server in parallel.

    openLuup

  • OpenLuup installation
    A ArcherS

    @akbooer that seems to have worked quite nicely when checking quickly on all the devices, thank once more for the quick response. 🙂

    One thing that does not work is the connection to the Z-Way server. The devices do not update when changing them either in the new openLuup or in the Zway UI.
    I suspect I need to login again to connect the bridge with the server.
    If I remember it correctly I should do that in the Console under "actions" for the Z-Way bridge. However it is empty there:

    8253efd8-3e8f-4461-9a26-1ff3bd1be79f-image.png

    Any ideas on that one?

    Edit: I have version 21.1.19 of the Z-Way bridge. On my old installation the login fields are there under "actions".
    fd1c629f-ffc9-4517-9324-43b6160d03a8-image.png

    Edit 2: I updated the Z-way plugin. This gave me a second plugin, also the username/passwd dialogues reappeared on the old bridge.
    After having deleted the new bridge, logged in into the old one and restarted openLuup it seems to work. I will see if anything looks strange.

    openLuup

  • OpenLuup installation
    A ArcherS

    Next question. 🙂

    When restoring from a backup file from another OpenLuup what is the best approach to get everything up and running on the new openLuup installation with icons, plugins etc?

    Should I manually copy e.g. icons and something else before restoring. Also do I have to install the plugins again?

    //ArcherS

    openLuup

  • OpenLuup installation
    A ArcherS

    That did the trick! 🙂

    Alpine and Docker, need to look at that also later on. 🙂

    Thank's @CatmanV2 and @akbooer for your swift help!

    openLuup

  • OpenLuup installation
    A ArcherS

    Hi,

    I am trying to install openLuup on a new Debian 11 server. It is a clean install Debian 11 running as a VM on Proxmox.

    I have installed lua 5.1, lua-socket, lua-filesystem and lua-sec.

    When installing openLuup with "# lua5.1 openLuup_install.lua" I get the following response:

    debian-pve:~/cmh-ludl$ lua5.1 openLuup_install.lua
    openLuup_install   2019.02.15   @akbooer
    getting openLuup version tar file from GitHub branch master...
    un-zipping download files...
    getting dkjson.lua...
    creating required files and folders
    initialising...
    downloading and installing AltUI...
    sh: 1: curl: not found
    lua5.1: ./openLuup/L_AltAppStore.lua:567: attempt to call upvalue 'next_file' (a nil value)
    stack traceback:
    	./openLuup/L_AltAppStore.lua:567: in function 'update_plugin_job'
    	openLuup/init.lua:254: in main chunk
    	[C]: ?
    openLuup downloaded, installed, and running...
    visit http://192.168.1.210:3480 to start using the system
    olsson@debian-pve:~/cmh-ludl$ Sat Aug 27 13:35:31 2022	device 2 '    openLuup' requesting reload
    

    When I try to go to the url "http://192.168.1.210:3480" I get the following response:

    No handler for data_request?id=lr_ALTUI_Handler
    

    In other words it seems as if there is a problem starting AltUI.

    If I instead go to the Console (http://192.168.1.210:3480/console) openLuup is up and running.

    The startup_log in the Console reads:

    2022-08-27 13:35:31.488   :: openLuup STARTUP :: /home/olsson/cmh-ludl
    2022-08-27 13:35:31.488   openLuup.init::        version 2021.06.14  @akbooer
    2022-08-27 13:35:31.489   openLuup.scheduler::   version 2021.03.19  @akbooer
    2022-08-27 13:35:31.510   openLuup.io::          version 2021.03.27  @akbooer
    2022-08-27 13:35:31.510   openLuup.mqtt::        version 2021.06.08  @akbooer
    2022-08-27 13:35:31.511   openLuup.wsapi::       version 2019.08.12  @akbooer
    2022-08-27 13:35:31.511   openLuup.servlet::     version 2021.04.30  @akbooer
    2022-08-27 13:35:31.511   openLuup.client::      version 2019.10.14  @akbooer
    2022-08-27 13:35:31.512   openLuup.server::      version 2020.03.26  @akbooer
    2022-08-27 13:35:31.518   openLuup.scenes::      version 2021.06.02  @akbooer
    2022-08-27 13:35:31.520   openLuup.chdev::       version 2021.05.04  @akbooer
    2022-08-27 13:35:31.521   openLuup.userdata::    version 2021.04.30  @akbooer
    2022-08-27 13:35:31.521   openLuup.requests::    version 2021.02.20  @akbooer
    2022-08-27 13:35:31.521   openLuup.gateway::     version 2021.05.08  @akbooer
    2022-08-27 13:35:31.522   openLuup.smtp::        version 2018.04.12  @akbooer
    2022-08-27 13:35:31.523   openLuup.historian::   version 2021.06.12  @akbooer
    2022-08-27 13:35:31.523   openLuup.luup::        version 2021.05.14  @akbooer
    2022-08-27 13:35:31.524   openLuup.pop3::        version 2018.04.23  @akbooer
    2022-08-27 13:35:31.524   openLuup.compression:: version 2016.06.30  @akbooer
    2022-08-27 13:35:31.524   openLuup.timers::      version 2021.05.23  @akbooer
    2022-08-27 13:35:31.524   openLuup.logs::        version 2018.03.25  @akbooer
    2022-08-27 13:35:31.524   openLuup.json::        version 2021.05.01  @akbooer
    2022-08-27 13:35:31.524   luup.create_device:: [1] D_ZWaveNetwork.xml /  /    ()
    
    2022-08-27 13:35:31.525   openLuup.chdev:: ERROR: unable to read XML file I_ZWave.xml
    
    2022-08-27 13:35:31.530   luup.create_device:: [2] D_openLuup.xml / I_openLuup.xml / D_openLuup.json   (openLuup)
    2022-08-27 13:35:31.530   openLuup.init:: loading configuration user_data.json
    2022-08-27 13:35:31.530   openLuup.userdata:: loading user_data json...
    2022-08-27 13:35:31.532   luup.variable_set:: 2.openLuup.HouseMode was: EMPTY now: 1 #hooks:0
    2022-08-27 13:35:31.532   openLuup.userdata:: loading rooms...
    2022-08-27 13:35:31.532   openLuup.userdata:: ...room loading completed
    2022-08-27 13:35:31.532   openLuup.userdata:: loading devices...
    2022-08-27 13:35:31.532   luup.create_device:: [1] D_ZWaveNetwork.xml /  /    ()
    
    2022-08-27 13:35:31.532   openLuup.chdev:: ERROR: unable to read XML file I_ZWave.xml
    
    2022-08-27 13:35:31.534   luup.create_device:: [3] D_AltAppStore.xml / I_AltAppStore.xml / D_AltAppStore.json   (urn:schemas-upnp-org:device:AltAppStore:1)
    2022-08-27 13:35:31.534   openLuup.userdata:: loading scenes...
    2022-08-27 13:35:31.534   openLuup.userdata:: number of scenes = 0
    2022-08-27 13:35:31.534   openLuup.userdata:: ...scene loading completed
    2022-08-27 13:35:31.534   openLuup.userdata:: loading installed plugin info...
    2022-08-27 13:35:31.534   openLuup.userdata:: [openLuup] openLuup (21.7.25)
    2022-08-27 13:35:31.534   openLuup.userdata:: [AltAppStore] Alternate App Store (20.3.30)
    2022-08-27 13:35:31.534   openLuup.userdata:: [VeraBridge] VeraBridge (not.installed)
    2022-08-27 13:35:31.534   openLuup.userdata:: [8246] Alternate UI (not.installed)
    2022-08-27 13:35:31.534   openLuup.userdata:: [Z-Way] Z-Way (not.installed)
    2022-08-27 13:35:31.534   openLuup.userdata:: [Arduino] MySensors (not.installed)
    2022-08-27 13:35:31.534   openLuup.userdata:: ...user_data loading completed
    2022-08-27 13:35:31.534   openLuup.init:: running _openLuup_STARTUP_
    2022-08-27 13:35:31.534   luup_log:0: startup code completed
    2022-08-27 13:35:31.534   openLuup.init:: init phase completed
    2022-08-27 13:35:31.534   :: openLuup LOG ROTATION :: (runtime 0.0 days) 
    

    Any ideas on what could be wrong and why AltUI does not work?

    openLuup

  • Considering changing to HA - but what installation method?
    A ArcherS

    Just for fun I decided to test and setup Home Assistant OS on two virtual machines.

    The first is a HA OS VM on a Windows 10 i5 NUC with VirtualBox. Quite easy to setup, some information can be found on the HA website, I also looked at this guide.

    The second VM I installed on an old Core2 PC. I installed Proxmox and then HA OS in a VM. A bit more complicated to setup but there is a good guide here. The Core2 seems ok for this setup, in comparison with the old Athom PC that did not do the job.

    Both installations seem to work ok. I will test them later on with a backup of my production setup to see if that changes anything.
    The Windows installation got corrupted when I had to hard reset the PC. As expected HA OS did not like that, however quite easy just to delete the VM and set it up again. I only had a test installation of HA on the VM, but as always a backup of HA is a good idea.

    I have not tested any USB devices (e.g. Zwave stick) since I do not use it. As far as I have understood it both should work with USB devices.

    What to use? The plan is to stay with my current Debian/Docker setup since it has so far been very stable. If the HA devs continues to move away from the Docker installation I may need to reconsider this.

    The other VM's could be an option for test rigs I think.
    I like the Proxmox setup, it feels quite solid and is built for VM. The Windows setup feels a bit more uncertain with the MS Windows 10 automatic updates etc.

    Home Assistant

  • An electricians or wiring experts here?
    A ArcherS

    @cw-kid it is really difficult to say. I think your drawing looks quite similar to the one I posted, but not quite sure, it could be different. The earthing in the pattress box is unfamiliar with me, the boxes here are in plastic. But I assume it is simply an earth to the box since it is made of metal.

    The colours are always tricky in old houses. They can have changed, different standards over time etc. Not to be trusted in other words. The only way to know is really to try understand what they all are and where they all go.
    You may need to disconnect the cables on the two switches to fully map things out. Marking the original position of all cables, cutting the power while working etc. 🙂

    I do not have any Dimmer 2, but will it not need neutral to operate? This means that you would need to get neutral to behind one of the light switches.

    Another solution could be to put the Fibaro at the light instead, if it fits safely there and is allowed in your location. That could perhaps be a solution not having to get new cables drawn into the boxes.

    Regarding your switches momentary should work or are even needed for being able to dim the light.

    I found a sketch showing one way to connect two momentary switches to a Fibaro Dimmer (the older version I think since it says "O" for the connnection that goes to the light). Maybe it could be of use.
    As always continue with care and cross-check with the Fibaro diagram, they could have changed something in the new version.

    f4e3f986-2d6b-42b7-a054-e68d60607563-bild.png

    Basically if I understand the sketch correctly the two switches need to be connected in parallel over S1 and SX.

    Not sure I can help more, good luck! 🙂

    General Discussion

  • An electricians or wiring experts here?
    A ArcherS

    In Sweden the most usual connection in that situation is a "stairway connection". It typically is done like this:

    618783f3-e7ce-4bc1-8c58-1d6486e49859-bild.png

    Maybe what you have is something like this connection?

    General Discussion

  • Considering changing to HA - but what installation method?
    A ArcherS

    I am running HA Supervised in a Docker container on Debian on a small i5 Lenovo. Installed HACS without any problems, there are a few guides on how to do it.
    It has been stable so far anyway.

    The only concern I have is that it seems as if the HA developers want to push users away from the Docker way of running HA over to the HA OS way.
    What this means is that the requirement now is more or less a vanilla Debian with only HA in Docker. If you do not stick to this the installation becomes "unsupported".
    My installation was "supported" but now I can see that it has become "unsupported" due to the Portainer installation.
    My idea was to add e.g. MSR in Docker at some point in time, but maybe the Docker route will be a dead end for HA?

    It could be so that a HA OS installation on a VM, e.g. in Proxmox is the better choice in the longer run. The other option to only install HA OS on e.g. a fairly modern NUC seems a waste of resources to me since you cannot use it for anything else then.

    I tested Proxmox and it seemed quite nice, the problem was that the old Athom PC I used was too old for the combination Proxmox/HA. So if I will go down that route I need to reinstall my i5 from scratch. Hmm.

    To be honest I think it is a bit annoying that HA has complicated the setup/installation so much, not sure why they did that.

    Home Assistant

  • openLuup: MQTT server
    A ArcherS

    Answering my own question, perhaps of some use for someone else. 🙂

    Today I upgraded my Home Assistant to 2021.11.5 and the connection to the OpenLuup Mqtt server seems so far to work as it should.
    (Running on OpenLuup v21.11.8)

    openLuup

  • HVAC Control
    A ArcherS

    I have a setup that works quite nicely for controlling my "mini split" HVAC.
    It is a quite old unit that is more or less totally stupid, it has a remote and that's it.

    Some time ago I put together a Tasmota IR device that can control quite a few different HVAC units including mine. Pretty cheap, not too difficult to build and with a nice case it looks ok.

    One nice aspect of the Tasmota solution is that both receives and sends IR so I mounted the IR Transciever close to the HVAC so that it also recieves commands from the IR remote. Another upside with the Tasmota route is that it is independent of what hub one uses since it is Wifi and Mqtt.

    The next question was how to control it. With the help from @therealdb and his excellent VirtualDevices plugin together with the Mqtt capability of OpenLuup I managed to get a working solution in place.There is some information in the Mqtt Bridge thread on this.

    Since I use Homewave the next logical step was to be able to control it from inside Homewave. A few dimmers with fixed steps and a Reactor with some logic and I got something working in place to control on/off, temperature and mode.
    Not the prettiest solution but it does the job. The limitations in the old Vera gui and device types do show.
    42532144-7ce0-44b3-a315-7144ff4a13e9-bild.png

    After recently having started playing around with Home Assistant I found a really nice integration for Tasmota IR HVAC control. It was really easy to get in place, it looks quite nice and can control most/all of the functions on the HVAC.

    a73a0416-93a1-4e7d-b72d-3b31dd954791-bild.png

    Hardware

  • openLuup: MQTT server
    A ArcherS

    @toggledbits said in openLuup: MQTT server:

    Also I can't connect my Home Assistant 2021.11.5 to the broker. This in the logs:

    I may have missed this, but was this solved?

    The reason is that I am currently on Home Assistant 2021.10.06 and was planning to upgrade to the latest 2021.11.5.
    On 2021.10.6 I am using the Mqtt server in OpenLuup and it is working fine.

    openLuup

  • MQTTController map different values from same topic?
    A ArcherS

    @Crille I do not use the MSR (yet! 🙂 ), but I do have a Tasmota device reporting three Xiaomi Mi BLE devices to OpenLuup over Mqtt.

    They report the following:

    {"Time":"2021-11-24T16:00:25","ATC-6d5d44":{"Temperature":20.6,"Humidity":48.0,"DewPoint":9.2,"Battery":76,"RSSI":-89},"ATC-9446bf":{"Temperature":19.6,"Humidity":52.0,"DewPoint":9.5,"Battery":42,"RSSI":-84},"ATC-f159bf":{"Temperature":19.6,"Humidity":55.0,"DewPoint":10.3,"Battery":45,"RSSI":-84},"TempUnit":"C"}
    

    on the following topic:

    tele/TasmotaBLE/SENSOR
    

    The message contains all three devices each under their name.

    Not sure how about the syntax in MSR but in e.g. Home Assistant you write something in this direction in the config.yaml to retrieve the temperature for one device.

      - platform: mqtt
        name: "Temperatur"
        state_topic: "tele/TasmotaCO2Ax/SENSOR"
        value_template: "{{value_json['ATC-6d5d44'].Temperature}}"
        device_class: temperature
        unit_of_measurement: "°C"
    
    Multi-System Reactor

  • openLuup: Shelly Bridge plugin
    A ArcherS

    @akbooer said in openLuup: Shelly Bridge plugin:

    Can you give latest development (v21.11.8) a try?
    I don't think I'm quite there yet, but the dimmer control should work to some extent.
    This is surprisingly hard, since the status/control aspect of the Shelly dimmer is not quite the same as that of a ZWave one... I've always hated the way that Vera handled dimmers anyway! But I'm doing the best I can.

    I installed v21.11.8 and now it almost seem to work. 🙂

    In short what is not entirely in place is that the dimmer slider on the AltUI desktop in some cases does not follow the set value.

    Example:
    When I change the dim value in the Shelly GUI it updates in OpenLuup inside the dimmer but the slider on the desktop does not update.

    Starting with the dimmer off and all sliders on 1% and then dim to 40% on the Shelly GUI gives:

    In the Shelly GUI:
    e7c627df-45d9-4f5f-93f4-2bfc5f859970-image.png

    On the desktop in AltUI:
    9f36d698-ca0d-43a2-a25b-61b9f0b72b0f-image.png

    Inside the dimmer controller in AltUI:
    0b967f7c-784b-424e-a2da-84e705a94309-image.png

    Variables:
    ee2d8d13-d247-4e89-9ca9-25fa44dc6b97-image.png

    light/0/status:
    {"ison":true,"source":"http","has_timer":false,"timer_started":0,"timer_duration":0,"timer_remaining":0,"mode":"white","brightness":40}

    If I instead change the dim value from AltUI either from inside the dimmer controller or from the desktop it works and everything is updated. Also the slider inside the AltUI dimmer seems to work as it should.

    Let me know if you need more information.

    Based on your input I tested the latest fw (v1.11.4) on a Shelly Plug and it does indeed seem to work with Mqtt. Great news that it actually works now.

    Plugins

  • openLuup: Shelly Bridge plugin
    A ArcherS

    @akbooer said in openLuup: Shelly Bridge plugin:

    Well, we'll see (the device arrived yesterday)...
    Latest development version of openLuup (v21.11.2) has an initial attempt to service the Dimmer2 device:

    inputs are handled exactly as the switch device – so, essentially, as a scene controller showing the latest activated scene: short press; long press; etc... This should work for both input switches (if you have any with two.)
    on/off button on the control panel should work for the dimmer bulb.
    slider control is not yet implemented.

    ...my current issue is that, although I now have the Shelly Dimmer2 device, I don't have any dimmable bulbs! Everything I have is LED, and they're either non-dimmable or smart devices anyway. In particular, I can't tell whether the power and Watts parameters work correctly for the dimmer.
    So I'd appreciate a listing of any bugs that you find, and I'll continue to work on the slider control.
    Incidentally, I've update to the latest firmware for this device: 20210909-150154/v1.11.4-DNSfix-ge6b2f6d since it came with a very old version that didn't even publish the model number. It seems to work fine, but I've not updated any other of my devices.

    @akbooer thank you for the effort, I installed v21.11.2 and have tested this a bit. 🙂

    For a start I have my switch connected to "sw 1". It is a single button switch, defined as a "one button mode" in the Shelly GUI.
    "sw 1" seems to report as "light/0" in the Mqtt message.

    It does not work fully in OpenLuup yet, below I list what I have found.

    Turning on/off with the physical switch:

    • The status in AltUI does change when turning the light on and off.

    • When I turn the light "off" with the physical switch I have:
      light/0:
      off
      light/0/status: {"ison":false,"source":"input","has_timer":false,"timer_started":0,"timer_duration":0,"timer_remaining":0,"mode":"white","brightness":80}

    • When I turn the light "on" with the physical switch (at 80%) I have:
      light/0:
      on
      light/0/status:
      {"ison":true,"source":"input","has_timer":false,"timer_started":0,"timer_duration":0,"timer_remaining":0,"mode":"white","brightness":80}

    Turning the light on/off in AltUI:

    • The light does not turn on/off when I turn it on/off in AltUI.

    • When I turn it "on" in AltUI I have:
      light/0:
      off
      light/0/status:
      {"ison":false,"source":"input","has_timer":false,"timer_started":0,"timer_duration":0,"timer_remaining":0,"mode":"white","brightness":80}
      relay/0/command:
      on

    • When I turn it "off" in AltUI I have:
      light/0:
      off
      light/0/status:
      {"ison":false,"source":"input","has_timer":false,"timer_started":0,"timer_duration":0,"timer_remaining":0,"mode":"white","brightness":80}
      relay/0/command:
      off

    When I turn it "on" in AltUI it looks like this:
    55db41a9-7577-41f1-a89f-5b517af01877-image.png

    When I turn on the light with the physical switch it looks like this:
    99f567b5-50e2-43fc-be6d-64f7d9ef76e4-image.png

    In Mqtt Explorer I have the following:
    Light on (i.e. turned on with the physical switch):
    33a274c4-2c2f-4f8e-a364-ab80d6bbee0b-image.png

    Light off (i.e. turned off with the physical switch):
    d1d21430-8705-46bc-b857-606884d367da-image.png

    Turning on in AltUI (but light off):
    f79f10d4-0c08-4cd7-a9f7-4fa7b42cc589-image.png

    Turning off in AltUI (light still off):
    52144f39-c0d3-4206-bc60-378e0fc9805e-image.png

    The "relay/0/command" command that is sent from AltUI does in other words not to give any effect on the Shelly device. In fact with a fresh Mqtt Explorer session it only emerges when turning on/off in AltUI.

    Hopefully this gives some hints to what is wrong. Let me know if you need more information.

    @akbooer said in openLuup: Shelly Bridge plugin:

    ...my current issue is that, although I now have the Shelly Dimmer2 device, I don't have any dimmable bulbs! Everything I have is LED, and they're either non-dimmable or smart devices anyway. In particular, I can't tell whether the power and Watts parameters work correctly for the dimmer.

    Dimmable LED lights are a bit tricky still. Some of them work and some of then do not work very well. It can be a bit of a pain to find good ones. The upside is that the Shelly dimmer can be changed from trailing and leading edge dimming (under "Calibration"). This should hopefully mean that it can be a little bit better to adapt to different lights.

    @akbooer said in openLuup: Shelly Bridge plugin:

    Incidentally, I've update to the latest firmware for this device: 20210909-150154/v1.11.4-DNSfix-ge6b2f6d since it came with a very old version that didn't even publish the model number. It seems to work fine, but I've not updated any other of my devices.

    Excellent news that the latest FW seems to work, I will test it later on one of my devices. 🙂

    Plugins

  • openLuup: Shelly Bridge plugin
    A ArcherS

    @akbooer top notch service as always! Hopefully you will get good use of it also. 🙂
    So far I am happy with mine. The dimmer supports all kind of switches. I use it with a spring loaded wall switch in "one button mode", i.e. as a push button with push-and-hold for dimming.

    As a side note I am still on 1.9.x on my Shellies since I did not get mqtt to work with the new firmware. On the EU Shelly support site it is very easy to set up an ota-url for flashing older versions on a device.

    Plugins

  • openLuup: Shelly Bridge plugin
    A ArcherS

    @akbooer sorry, no I am in Sweden.
    I only have one dimmer unit so far and it is in my son's room, he will not like being without ceiling lights this time of the year in our parts of the world. 🙂

    Plugins
  • Login

  • Don't have an account? Register

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