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'.
-
Hi all of you. So the thing happening to me is: I reconfigured my entire network. 70 devices. im using engine 3.0 now (i know i shouldn't do that :D) But now when i am making a scene (block) the dimmer2 only shows up the light. not the remote control. when i reconfigure the device it does show up. after a few days ik want to make another scene and the switch dissapeard again from the dropdown list in de scene editor. What is happening here. anyone have an idea. What i also like to mention. it was a mistake going to engine 3.0. everthing is reacting 10 times slower then when i was at 2.0. still thinking of going back. but stays a lot of work:D.. Thanks already for some kind of reaction. Gr Wesley
-
- scene
- remote control
-
(and 3 more)
Tagged with:
-
Version 1.0.0
60 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!- 1 comment
-
- quick app
- comfort cloud
-
(and 2 more)
Tagged with:
-
Version 1.0.0
169 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 -
Template for ZME_RC2 defective or not present
jwi posted a question in Other Devices / Third-party devices
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. -
zwave.me keyfob not working with HC2 zme_KFOB2
Roy posted a question in Other Devices / Third-party devices
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!