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


Jaapdeknaap

Member
  • Posts

    27
  • Joined

  • Last visited

About Jaapdeknaap

Profile information

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

Recent Profile Visitors

76 profile views

Jaapdeknaap's Achievements

Newbie

Newbie (1/8)

4

Reputation

  1. Well, this is not our list. I have to admit that I see it for the first time. Maybe something to look into?
  2. @petergebruers I'm not saying this to hurt people or to be rude. What i tried to say, if you have a update and in this update you say the (i my case) the harmony plugin is going to be fixed and it is not. I think it is normal that people are starting to ask questions , i think it is more then necessary to give a proper answer from a moderator/fibaro or somebody knows the real state of the problem and give a new timeline when it is going to be fixed. And not; Soon or don't respond anymore. No, i don't think Athom is a better product. But i think it is more user friendly for users like me. I have a lot of friends that would like to have a Fibaro (higher quality), but in the end buy's Athom because of the app store and more user friendly approach.
  3. @petergebruers Users like you or Sankotronic or Lambik and many more are lisening and helping. I mean Fibaro in general, If you asked a question like when they are going to fix (again) the harmony plugin. And it should be fixed a couple of updates ago, it is very quiet again...or you will get the answer Soon...
  4. Hi all, I'm not a experienced user, i'm a rookie instead. And as a rookie, i like the community a lot over here. Everybody is helping and listening except Fibaro itself i my humble opinion. If you ask a question to Fibaro 9 out of 10 times i don't get a response, only when i say on facebook i like a product, they do response in a second or 2. But if i criticize something, you could hear a pin drop again. If Fibaro say's they are lisening the the users/community why are this top 10 wanted improvements still on the wishlist for ages? https://fibaro4u.uservoice.com/forums/254959-features-device-support-and-other-suggestions/filters/top I understand that some thing can't be done quickly, but come on, some questions are older then 2 years?! Like H.264 Support for camera's! And if they want to create a out of the box system, i don't want to make all kind off thing in LUA, because i don't understand it. I would like to have a good an wide range in a App store (like Homey) Just my 2 cents. edit: some typo's
  5. Tomorrow i have the time to check it.
  6. Hi All, I bought a beamer elevator and it comes with a 433 MHz module. I would like to keep this also installed in combination with a Fibaro roller shutter 2. Now i don't know on witch side i must put the roller shutter, on the side of the beamer or the side of the wallplug? The 433 MHz is only for backup when fibaro loses contact, and i don't want to complete remove the ceiling. Thank you very much in advance. David
  7. Yes this is correct, only on the given times you will get another Reply.
  8. Hi all, After a long time, i got it finally working. (my knowlegde go LUA is almost 0) I would like that the lights only getting on when the house is in evening or night status. Or maybe even better when also/or the LUX is getting below 60.. This code for updating my house state: [ %% properties %% autostart %% globals --]] -- Scene : Time of Day -- Version : 6.0.3 -- Release Date : 14 January 2016 -- Compatibility : Home Center 2, v4.030 to v4.063 Beta -- Purpose : Check time of day and Set global variable -- Trigger : None -- Contributors : Fibaro Forum - petergebruers, boerremk and many others who have shared bits of scripts in the forum -------------------- Configuration - Scene Info sceneName = "Time of Day"; sceneVersion = "6.0.3"; -------------------- Configuration - Time Offsets -- Set the offset time in minutes -- Set positive offset value for after Sun-rise/set, negative value for before Sun-rise/set, zero for no offset offsetSunrise = 0; offsetSunset = -50; -------------------- Configuration - Debug Parameters local dispExtDebug = false; -------------------- Script Functions -------------------- Function: Fibaro Debug Message with Color function fDebug(color, message) fibaro:debug(string.format('<%s style="color:%s;">%s</%s>', "span", color, message, "span")); end -------------------- Function: Fibaro Wait Time function fSleep(stime) fibaro:sleep(stime); end -------------------- Function: toTimestamp local function toTimestamp(time, offset) currDate = os.date("*t"); hours, minutes = time:match("^(%d+)%d+)"); return os.date("%H:%M", os.time({ year=currDate.year, month=currDate.month, day=currDate.day, hour=hours, min=minutes, sec=seconds }) + (offset*60)) end -------------------- Validate Source Trigger local sourceTrigger = fibaro:getSourceTrigger() fDebug("green", "Script started because of: " .. sourceTrigger["type"]); -------------------- Validate Number of Scene Instance fSleep(50); if (fibaro:countScenes()>1) then if (dispExtDebug) then fDebug("yellow", "Scene, " .. sceneName .. " is already running with " .. fibre:countScenes() .. " instances!"); fDebug("yellow", "Aborting additional instance(s)!"); end fibaro:abort(); end -------------------- Start of Scene Execution if (sourceTrigger["type"] == "autostart") then while true do local currDate = os.date("*t"); local currTime = os.date("%H:%M"); ---------------- Time-string Manipulation ---------------- %02u means unsigned int, 2 wide, leading zero currTimeAsString = string.format("%02u",currDate.hour) .. ":" .. string.format("%02u", currDate.min) varTimeOfDay = fibaro:getGlobalValue("TimeOfDay") if (dispExtDebug) then fDebug("Time of Sunrise: " .. fibaro:getValue(1, "sunriseHour")); fDebug("green", "Time of Sunset: " .. fibaro:getValue(1, "sunsetHour")); end fDebug("green", "Current Time: " .. currTimeAsString); if (dispExtDebug) then fDebug("green", "Current Time of Day: " .. varTimeOfDay); end if ---------------- Morning currTime == toTimestamp((fibaro:getValue(1, "sunriseHour")), offsetSunrise) then if (dispExtDebug) then fDebug("grey", "Time of Offset Sunrise: " .. toTimestamp((fibaro:getValue(1, "sunriseHour")), offsetSunrise)); end fDebug("grey", "Setting Time of Day as Morning"); fibaro:setGlobal("TimeOfDay", "Morning"); elseif ---------------- Afternoon currTime == "11:00" then fDebug("grey", "Setting Time of Day as Day"); fibaro:setGlobal("TimeOfDay", "Day"); elseif ---------------- Evening currTime == toTimestamp((fibaro:getValue(1, "sunsetHour")), offsetSunset) then if (dispExtDebug) then fDebug("grey", "Time of Offset Sunset: " .. toTimestamp((fibaro:getValue(1, "sunsetHour")), offsetSunset)); end fDebug("grey", "Setting Time of Day as Evening"); fibaro:setGlobal("TimeOfDay", "Evening"); elseif ---------------- Night currTime == "23:00" then fDebug("grey", "Setting Time of Day as Night"); fibaro:setGlobal("TimeOfDay", "Night"); elseif ---------------- Dawn currTime == "06:00" then fDebug("grey", "Setting Time of Day as Morning"); fibaro:setGlobal("TimeOfDay", "Morning"); else ---------------- No Match fDebug("orange", "Current time does not match any scenario."); end ------------------ Once Per 55 Seconds Wake-up fSleep(55*1000); end ---------------- End of Infinite While-loop fDebug("Scene not started, this is autostart-only!") end ------------------ End of sourceTrigger["type"] == "autostart"
  9. I'm using the post from Boerrmk in post #11 I still get the error: [DEBUG] 23:48:17: morning: 06:30 [DEBUG] 23:48:17: evening: 18:42 DEBUG] 23:49:17: morning: 06:30 DEBUG] 23:49:17: evening: 18:42 Ect, Ect
  10. Not working for tx-nr609, even not after ip reset
  11. Just starting with Fibaro

  12. Y-Cam bullet HD 1080 - Working Select brand: IpCam from the plug-ins Put in your IP-adres and port. Most cases port 80. Done
×
×
  • Create New...