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


Search the Community

Showing results for tags 'convert'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • FIBARO Community
    • FIBARO Portal and Forum policy
    • FIBARO
    • Say hello!
    • Off-topics
  • FIBARO Update
    • FIBARO System Update
    • FIBARO Mobile Update
  • FIBARO Community Support
    • Scenes and Interface
    • FIBARO Products
    • FIBARO Mobile
    • FIBARO HomeKit
    • FIBARO Assistant Integrations
    • Other Devices / Third-party devices
    • Tutorials and Guides
    • Home Automation
    • Suggestions
  • FIBARO Społeczność
    • FIBARO
    • Przywitaj się!
    • Off-topic
  • FIBARO Aktualizacja
    • FIBARO System Aktualizacja
    • FIBARO Mobile Aktualizacja
  • FIBARO Wsparcie Społeczności
    • Sceny i Interfejs
    • FIBARO Urządzenia
    • FIBARO Mobilnie
    • FIBARO HomeKit
    • Integracja z Amazon Alexa i Google Home
    • Urządzenia Firm Trzecich
    • Poradniki
    • Automatyka Domowa
    • Sugestie

Categories

  • Scenes
  • Virtual Devices
  • Quick Apps
  • Icons

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Facebook


Google+


Skype


Website URL


WhatsApp


Country


Gateway/s


Interests

Found 3 results

  1. Hi everyone, I have connected to my Smartimplant 0-10V sensors, now I get numbers of Volts, but I would like to see it in percentage, and even better would be, if I could set how much volts are 100%. Is there any way to do so? Thanks for advice. David
  2. Hi, On HC2 I used to have one virtual device to control all LED lights in room. Turning On and Off should be no problem. But how to handle slider? Assuming QA is working how to post action from HA Bridge to set appropriate value? HC2 device: and LUA: Slider: local slider = _sliderValue_ local jT = json.decode(fibaro:getGlobalValue("HomeTable")) -- REFERENCE TO DECODE TABLE fibaro:debug('Slider value: ' .. slider) -- Set both LED dim value if tonumber(slider) == 0 then -- turn Off fibaro:call(jT.hall.Light_LED_switch, 'turnOff'); fibaro:sleep(100); fibaro:call(jT.hall.Light_LED_entrance, 'turnOff'); fibaro:sleep(100); fibaro:call(jT.hall.Light_LED_dummy, 'turnOff') else fibaro:call(jT.hall.Light_LED_switch, 'setValue', slider); fibaro:sleep(100); fibaro:call(jT.hall.Light_LED_entrance, 'setValue', slider); fibaro:sleep(100); fibaro:call(jT.hall.Light_LED_dummy, 'turnOn') end OFF: -- Set LED Off local jT = json.decode(fibaro:getGlobalValue("HomeTable")) -- REFERENCE TO DECODE TABLE selfId = fibaro:getSelfId(); fibaro:call(jT.hall.Light_LED_switch, 'turnOff'); fibaro:sleep(100); fibaro:call(jT.hall.Light_LED_entrance, 'turnOff'); fibaro:sleep(100); fibaro:call(jT.hall.Light_LED_dummy, 'turnOff') fibaro:call(selfId, "setProperty", "ui.Slider1.value", 0); MAX: -- Set LED Max local jT = json.decode(fibaro:getGlobalValue("HomeTable")) -- REFERENCE TO DECODE TABLE selfId = fibaro:getSelfId(); fibaro:call(jT.hall.Light_LED_switch, 'setValue', 100); fibaro:sleep(100); fibaro:call(jT.hall.Light_LED_entrance, 'setValue', 100); fibaro:sleep(100); fibaro:call(jT.hall.Light_LED_dummy, 'turnOn') fibaro:call(selfId, "setProperty", "ui.Slider1.value", 100); In HA Bridge to set slider value I used for example: http://[email protected]:[email protected]/api/callAction?deviceID=281&name=setSlider&arg1=6&arg2=${intensity.percent} to click button: http://[email protected]:[email protected]/api/callAction?deviceID=348&name=pressButton&arg1=1 Anyone can help on this or already have QA and can share so I can adopt it? Is HA bridge command still the same as on HC2 or needs to be changes?
  3. Hi All, This Lua Script does exaclty what I am looking for to use the rain delay in the Sprinkler Panel for what would be a more automated method instead of the built in functionality which is pretty manual (so much for "smart" home) Problem is I have an HCL, so I would need to understand how I program this virtual device without LUA Thanks to Vesternet for the original LUA script http://www.vesternet.com/resources/application-notes/apnt-78#.VgRbcrTJ8UW Any help "translating" please. Thanks
×
×
  • Create New...