Welcome to Smart Home Forum by FIBARO
Dear Guest,
as you can notice parts of Smart Home Forum by FIBARO is not available for you. You have to register in order to view all content and post in our community. Don't worry! Registration is a simple free process that requires minimal information for you to sign up. Become a part of of Smart Home Forum by FIBARO by creating an account.
As a member you can:
- Start new topics and reply to others
- Follow topics and users to get email updates
- Get your own profile page and make new friends
- Send personal messages
- ... and learn a lot about our system!
Regards,
Smart Home Forum by FIBARO Team

Question
Ros 22
Hi guys,
I have an electric water switch connected to Fibaro Switch 2. On and Off are two different switches, so I need to create a VD with On and Off buttons which would fire respective switches.
I have created a code for the 'On' button. When pressed, this button needs to check the globalvariable LeakStatus and send the 'turnon' command to the switch only if there is no leak. The code is below.
local Leak = fibaro:getGlobalValue("LeakStatus")
If ( Leak == "NoLeak" )
then
fibaro:call(29,'turnOn');
fibaro:setGlobal("WaterTap2Status","Open");
fibaro:debug ('Water Tap 2 is Open')
else
fibaro:debug ('Cannot turn on, because there is a leak detected')
When debugging, I get
[ERROR] 19:26:13: line getGlobalValue("LeakStatus")..."]:4
What am I doing wrong?
Edited by Ros1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.