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

Devices is turned on or not.


Question

Posted
Hi

 

Can someone help me please . I just want to find out whether eon devices is turned on or not.

 

 

   --"type":"com.fibaro.FGRM222"

-----------------------------------------------------------------------

local response ,status, error = api.get("/devices/72");

jsonTable = json.encode(response);

devices = jsonTable

fibaro:debug(devices)

-----------------------------------------------------------------------

for k, v in pairs(jsonTable) do

 

  result = v.enabled

end

result = result

fibaro:debug(result)

12 answers to this question

Recommended Posts

  • 0
Posted

Please login or register to see this code.

or you could use:

 

local device = api.get('/devices/72')

fibaro:debug(device['visible'])

fibaro:debug(device['properties']['value'])

 

  • 0
Posted

id = 72

if tonumber(fibaro:getValue(id, "value")) > 0 then

  fibaro:debug{"Turned On")

else

  fibaro:debug{"Turned Off")

end

  • 0
  • Inquirer
  • Posted

    Hi

    All this I know, but queried via the api whether the device eaktiviert or is visible.

    I can not read because it is Boolean from the table the value.

    As I go through the tabell with the fo..do

    • 0
    Posted

    If you want to use the API:

    Please login or register to see this code.

    • 0
  • Inquirer
  • Posted
    It works perfectly in VD. Can you adapt it for a scene?

    thank you

    • 0
  • Inquirer
  • Posted

    Thank you very much

    • 0
  • Inquirer
  • Posted

    local device = api.get('/devices/72')
    fibaro:debug(device['enabled])

     

    This method works very well and easy.

     

    How can I set to False????

    • function Device:setEnabled(true)

    Please login or register to see this code.

    thank you in advance

    • 0
  • Inquirer
  • Posted

    How can I make a device on the off with script ..

    • 0
  • Inquirer
  • Posted

    Hi

    Please login or register to see this code.

    How can I only the timestamp print?

    print(json.encode(timestamp ))

     

    thank you

    • 0
    Posted
    38 minutes ago, parip69 said:

    Hi

    Please login or register to see this code.

    How can I only the timestamp print?

    print(json.encode(timestamp ))

     

    thank you

    local event = api.get('/panels/event?last=1&type=id&deviceID=147')
    print(json.encode(event[1].timestamp))

     

    • 0
  • Inquirer
  • Posted

    Thank you, it works

    • 0
    Posted
    On 8/16/2016 at 2:58 PM, parip69 said:

    local device = api.get('/devices/72')
    fibaro:debug(device['enabled])

     

    This method works very well and easy.

     

    How can I set to False????

    • function Device:setEnabled(true)

    Please login or register to see this code.

    thank you in advance

     

    On 8/16/2016 at 2:58 PM, parip69 said:

    local device = api.get('/devices/72')
    fibaro:debug(device['enabled])

     

    This method works very well and easy.

     

    How can I set to False????

    • function Device:setEnabled(true)

    Please login or register to see this code.

    thank you in advance

    Hi!
    device:setEnabled(false)
    Does this function work in scene?  
    I cant get it work? Device property setEnabled does not change.

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