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

Basic lua programming


Bjoern E

Question

Hello

 

I'm new at lua programming and trying to use a variable to change light on or off, from a second button. But i can't get the variable to work. What is wrong here.

Declaration

{
  conditions = { {
      id = 187,
      isTrigger = true,
      operator = "==",
      property = "state",
      type = "device",
      value = false
    } },
  operator = "all"
}

 

Actions

local Status_186 = fibaro.getValue(186"value")
 
if Status_186 == 'ON' then
fibaro.call(186'turnOff')
else
fibaro.call(186'turnOn')
end
Edited by Bjoern E
Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

if you dont know  what device value is, values type is, then use print and check it.

ex)

local x = fibaro.getvalue

print(x, type(x))

 

-- if  type of x is string then

if x == "abc" then  do something end

 

-- if type of x is number or boolean then

if x == 1 or x == true then  do something end

 

 

For more information,  search on google

 

Link to comment
Share on other sites

  • 0
  • Inquirer
  • I only get nil in return. Looks like ID186 don't return any value. It is a Dimmer 2 i'm trying to control.

    Link to comment
    Share on other sites

    • 0
    On 7/6/2020 at 1:10 AM, Bjoern E said:

    Actions

    local Status_186 = fibaro.getValue(186"value")
     
    if Status_186 == 'ON' then
    fibaro.call(186'turnOff')
    else
    fibaro.call(186'turnOn')
    end

     

    If 186 is a dimmer then fibaro.getValue returns a number 0-99

    And at triggers property = "value" 

     

     

     

    Link to comment
    Share on other sites

    • 0
  • Inquirer
  • Super. I got it to work now. Thanks a lot! Reason i use "state" in property is becase this switch only is used to turn on and off several lights.

    One new problem is a RGBW Controller 2 who's not return any value?

    Edited by Bjoern E
    Link to comment
    Share on other sites

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