How to make Fibaro Walli switches toggle remote Wallis quickly? (maybe using scenes?) #3876
-
Hi all, I´m not completely sure I´m right here, but … let´s try ^_^. I have a lot of Fibaro Walli switches in my house. They work like a charm with ZWave-JS-UI in Home-Assistant! Except for … one little thing. In quite some places I have one mains-powered Walli with no local load attached. I´d like to use it purely to toggle(!) a remote Walli switch. I found (supposedly) three ways of doing this:
So … What I´d like to get to work are Scenes. I know I can create a Scene in ZWave-JS-UI. I can create "association"s in Scenes, which seem to be able to set just about any parameter to a target value on the associations target device. e.g. the switches state. I can set it to "on" as a target, which isn´t exactly toggle, but … lets see where this leads. Now let´s say i created that scene. How the heck to I configure the "sending" switch, to actually send that scene. This is the documentation for the device. Searching for scene I find:
mh … well. Yes, I suppose I´d like to trigger a scene ID on a Key press 1 time. But where do I tell it which scene a certain button pressed 1 time should trigger? Is that part of the scene? of the device? is it device-specific or a standard? What does the "Central Scene V3" Commandclass even mean? In the ZWave-JS-UI Configuration section i see a lot of undefined readonly values, and "Send held down notifications at a slow rate" as a parameter. Mhmm. I realise asking for a specific device is a tough nut, but I´m desperate here. I´d appreciate any help I can get either to understand the basic zwave and zwavejsui concepts that might help me solve this, or even better specific tips for the precise device. Thanks for reading! Best, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
This is not a "Z-Wave scene", it's a "Z-Wave JS UI scene", purely configured in the software. It's exactly the same thing as using HA Automation Scenes but is limited to whatever ZUI supports, and this kind of scene has no relation to the Z-Wave protocol or devices. You trigger these scenes via MQTT, either using a manual MQTT topic command or as a switch entity in HA using MQTT discovery.
As the name denotes, "Central Scene" uses a centralized controller/hub/gateway, aka Home Assistant or ZUI. The device will send the command on those button presses and the gateway decides how to responsd with your configured automations. In other words, this is your "Automation in Home-Assistant" line item. The benefit is that it doesn't act as a on/off device and you can react based on what kind of key press was performed. Sometimes there is a slight delay since the device needs to figure out whether you're doing a scene or setting the on/off state, so dedicated scene controllers may work faster. Real "Z-Wave Scenes" require the use of the Scene Activation CC / Scene Actuator Configuration / Scene Controller Configuration command classes. These are mostly outdated, IMO, you won't really find support in new devices. They're also very difficult to configure. Central Scene support has mostly replaced this. To use with your Walli it and the target devices would need to Support those command classes. If you want to keep using the Walli, Central Scene sounds like the best option, with an automation via Home Assistant. A 2-4 second delay sounds like either device limitations or network problems. I have several GE switches I use in this fashion and actions are mostly instantaneous (double tapping the dimmer light sets it to a fixed brightness). |
Beta Was this translation helpful? Give feedback.
This is not a "Z-Wave scene", it's a "Z-Wave JS UI scene", purely configured in the software. It's exactly the same thing as using HA Automation Scenes but is limited to whatever ZUI supports, and this kind of scene has no re…