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


wesselvvvb

Member
  • Posts

    26
  • Joined

  • Last visited

About wesselvvvb

  • Birthday 05/28/1973

Profile information

  • Gender
    Male
  • Country
    The Netherlands
  • Gateway/s
    Home Center 2

Contact

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

wesselvvvb's Achievements

Newbie

Newbie (1/8)

1

Reputation

  1. Hello, I connected a Fibaro Dimmer to a three way cross switch. In the beginning it was working fine but now the dimmer turns to 100% automatically whenever I try to dim it down. Has anyone experience with this problem? A solution is welcome. Thanks in advance Kind regards, Wessel vVvB
  2. Hello, Is it possible to download a list with all the devices with ID, names, rooms from the Fibaro system? Thanks. Wesselvvvb
  3. I have a Sonos:AMP in my bathroom which I was not using that much because when I go into the bath or shower my phone often isn’t around to turn on the music. So, It seemed handy to turn on the music (the existing playlist) with a triple click of my bathroom light switch. This is how I reached this goal: I installed the Sonos Plugin and I added my bathroom Sonos device I downloaded and added the Sonos Virtual Device from Krikroff: http://www.fibarouk.co.uk/resources/VirtualDevices/SonosPlayer-0.0.8.zip Add a variable in the Variables Panel. I used this tutorial on Youtube: https://www.youtube.com/watch?v=ps9jNiJ_JeU As I am still using Dimmer 1 (FGD-211), I turned on the Scene Activation functionality by putting parameter 41 on 1 in the advanced tab of my bathroom dimmer. If you use Dimmer 2 (FGD-212) you’ll have to put parameter 28 on 1 (no experience, so not sure). After that I build 3 scenes: First of all a scene to put on the Sonos on a specific volume level (where as 311 and 312 are the ID’s of the Sonos Plugin and Virtual Device): --[[ %% properties %% events %% globals --]] -- Set volume of the Sonos plugin fibaro:call(311, "setVolume", "40") -- Press button 7 (play) of the Sonos Virtual Device fibaro:call(312, "pressButton", "7") Second a scene to stop the Sonos player again: --[[ %% properties %% events %% globals --]] -- Press button 9 (stop) of the Sonos Virtual Device fibaro:call(312, "pressButton", “9") Third, a scene to activate the scenes on a triple click: --[[ %% properties 12 sceneActivation %% globals --]] local id= 12; -- Change this to your dimmer ID if (tonumber(fibaro:getValue(id, "sceneActivation"))==15) and (tonumber(fibaro:getValue(id,"value"))==0) then fibaro:debug("3click activated, Sonos bathroom ON"); fibaro:setGlobal("Sleep", "1") -- Change this to your sleep variable(if you have one) fibaro:startScene(278); -- or start a second scene end if (tonumber(fibaro:getValue(id, "sceneActivation"))==15) and (tonumber(fibaro:getValue(id,"value"))>0) then fibaro:debug("3click activated, Sonos bathroom OFF"); fibaro:setGlobal("Sleep", "1") -- Change this to your sleep variable(if you have one) fibaro:startScene(279); -- or start a second scene end 12 is the dimmer ID of the bathroom, 278 the ID of the scene to turn on Sonos and 279 to turn off Sonos. 15 corresponds with triple click. There is one issue I didn’t foresee (because I copied scene 3): scene 3 looks if dimmer 12 is on (>0) or off (=0) to decide whether to turn on or off the Sonos. This should obviously be: look whether the music is on or off to decide if it has to be turned on or off. Somebody any suggestions to solve this? Any other suggestions to develop this solution further are welcome as well. Thanks in advance. Wesselvvvb
  4. Hello Fibaro (users), Today after a power failure I cannot see my HC2 in the network. The last blue led (wrench) keeps blinking. Also, it is not possible to put my HC2 into recovery mode (following the well-known procedure). Does anybody know what to do?? Thanks in advance. Wessel vVvB
  5. Here another one with the same problem. Still no solution?
  6. Hello Alex, You are a genius!! Thanks for this suggestion. It fixed my problem. Wessel
  7. Hello, A few of my dimmers disappeared in my app on mobile devices iPhone and iPad. The last one disappeared after a sof reset. Anybody the same experience (and maybe the solution)? Thanks in advance. Wessel
  8. I will try it later and keep you posted here. Thanks for your input.
  9. I think not yet. But maybe mr Nowacki can say something about this?
  10. Actually it is really simple: If a dimmer is triggered with three clicks start a scene. But I do understand what you mean: keep it as simple as possible!
  11. It is really convenient! Now I turn on activity "Watch TV" with a triple click on my light switch and the TV, receiver, decoder are turning on and the lights will dimm to 30%
  12. Ok. Thanks Peter. I'll try it. Strangely enough I tried my construction again and now it seems to work sometimes (not all the time).
  13. Logitech announced the Harmony Hub Extender. It makes it possible to control more home devices than ever with expanded ZigBee® and Z-Wave Plus™ compatibility. Also Fibaro?
  14. Hello Mati, At first I tried that. But now I figured out that this works: --[[ %% properties %% globals --]] fibaro:call(233, "changeActivityState")
×
×
  • Create New...