Jump to content

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


  • 0

[SOLVED]Water switch VD


Question

Posted (edited)

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 Ros

1 answer to this question

Recommended Posts

  • 0
  • Inquirer
  • Posted

    Ok I've figured it out... 'If' was with a capital I ... or a wrong symbol

    I am sooo a total newbie...

    Join the conversation

    You can post now and register later. If you have an account, sign in now to post with your account.

    Guest
    Answer this question...

    ×   Pasted as rich text.   Paste as plain text instead

      Only 75 emoji are allowed.

    ×   Your link has been automatically embedded.   Display as a link instead

    ×   Your previous content has been restored.   Clear editor

    ×   You cannot paste images directly. Upload or insert images from URL.

    ×
    ×
    • Create New...