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 'remote control'.

  • 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 4 results

  1. Version 1.0.0

    58 downloads

    Panasonic comfort Cloud app What it does: Control you Panasonic comfort cloud compatible heat pump devices. just like the android or apple app, but from you home center 3 Comfort Cloud installation: Upload the quick app to the hc3. Go to the variable panel and change the email and password. Wait a coble off second then press on button. Variable settings: for setting start temperature in the aircon modes. WARNING!! Do not set it to a number that larger or smaller than you Panasonic is capable of. so do not set cooling start temp to 5 degrees when minimum is 15 or heat to 65 degrees when max is 30, you get the point. Extra fun stuff: Since there is a thermometer in the inside & outside unit, i added two global variables that you can use in other apps GlobalVariable('inside heatpump temperature') GlobalVariable('Outside heatpump') Added a function for retrieving energy and more for. it can be viewed via the debug buttons. located in Oninit and use function QuickApp:getHis() Plan is to make a app that just shows energy data and more. Troubleshoot: it is crucial that app retrieve token before app runs. i have very fast internet so could be that with slow internet that timers have to be adjusted up. located in Oninit important that they execute in that order! fibaro.setTimeout(1500, function() QuickApp:turn1()() end) --token first fibaro.setTimeout(3000, function() QuickApp:turn2() end) --when we got token we can run the rest. fibaro.setTimeout(604800000, function() QuickApp:onInit() end) --token restart every month Full Code on my Github page: Code Last words: Damn this was hard to make when never haven writing Lua before. Enjoy!
  2. Version 1.0.0

    163 downloads

    Marantz Remote I have adapted the French Denon remote app from french forum to Marantz. French Forum Added bunch of stuff from the attached protocoll. Added Eco mode On/Off Added 11 more Surround sound modes Added 10 Sources Upload and edit ip varible to get it working. The rest of the varibles should not be changed. You can customize the sources buttons names in the edit panel. If you wanna check code before downloading, you can also visit my repo for this Github HC3_Quickapp_Marantz
  3. Hi, after updating from 4.100 to 4.110, no settings of my two ZME_RC2 remote controls are visible. No name, room id or association is visible and if you want to enter something, this error message appears. Fortunately, you can still use the remote, but new device associations are not possible. The problem already is listed in the Fibaro bug tracker under http://bugzilla.fibaro.com/view.php?id=4210 Seems that Fibaro locks out other manufacturers or the updates are very sloppy. Quality control is missing.
  4. Hi there Altough some people are getting the zwave.me keyfob to work, I tried several methods, but it does not seem to activate my scenes. I have the ZME_KFOB2 (Version 1.4*) *With 1.3 you can add the device holding the four buttons for 5 sec. and push then button 3 *With 1.4 you can add the device holding the four buttons for 5 sec. and push then button 1 I just want to start a scene when I leave the house en start another scene when I come home. I included the device and also woke up the device. I also was able to configure the parameters so that I can start a scene with button 1,2,3,4 However when configured the following scene, nothing works. Controller = Fibaro HC2 214 = device ID Keyfob 159 = light scene on 160 = light scene off Scene 1 ------------------------------------------------------------------------------------------------------------------------------------------------------ --[[ %% properties 214 sceneActivation %% globals --]] if ( tonumber(fibaro:getValue(214, "sceneActivation")) == 11) then fibaro:startScene(1); end if ( tonumber(fibaro:getValue(214, "sceneActivation")) == 12) then fibaro:startScene(160); end if ( tonumber(fibaro:getValue(214, "sceneActivation")) == 13) then fibaro:startScene(159); end if ( tonumber(fibaro:getValue(214, "sceneActivation")) == 14) then fibaro:startScene(160); end -------------------------------------------------------------------------------------------------------------------------------------------------------- I also tried the following scene Scene 2 ---------------------------------------------------------------------------------------------------------------------------------------------------------- --[[ %% properties 214 sceneActivation %% globals --]] -- This part makes sure that the script only runs once if (fibaro:countScenes()>1) then fibaro:debug('Kill the second scene!'); fibaro:abort(); end RemoteID = 214; -- Change this number into your remote ID number if ( tonumber(fibaro:getValue(RemoteID, "sceneActivation")) == 11) -- button 1, single press then fibaro:startScene(159); -- Fill in the number of the scene you want to activate end if ( tonumber(fibaro:getValue(RemoteID, "sceneActivation")) == 12) -- button 2, single press then fibaro:startScene(160); -- Fill in the number of the scene you want to activate end -------------------------------------------------------------------------------------------------------------------------------------------------------------------- Any advice? Thanks in advance!
×
×
  • Create New...