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.


parip69

Question

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)

Link to comment
Share on other sites

12 answers to this question

Recommended Posts

  • 0

id = 72

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

  fibaro:debug{"Turned On")

else

  fibaro:debug{"Turned Off")

end

Link to comment
Share on other sites

  • 0
  • Inquirer
  • 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

    Link to comment
    Share on other sites

    • 0

    If you want to use the API:

    Please login or register to see this code.

    Link to comment
    Share on other sites

    • 0

    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'])

     

    Link to comment
    Share on other sites

    • 0
  • Inquirer
  • 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

    Link to comment
    Share on other sites

    • 0
  • Inquirer
  • Hi

    Please login or register to see this code.

    How can I only the timestamp print?

    print(json.encode(timestamp ))

     

    thank you

    Link to comment
    Share on other sites

    • 0
    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))

     

    Link to comment
    Share on other sites

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

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