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


All Activity

This stream auto-updates

  1. Past hour
  2. Yes, that's better. The missing resource warnings will be there.
  3. [26.06.2026] [11:35:47] [WARNING] [QUICKAPP397]: Missing resource type:clip (further events for this type will be ignored) [26.06.2026] [11:35:51] [WARNING] [QUICKAPP397]: Missing resource type:smart_scene (further events for this type will be ignored) vo.2.68
  4. The restart was unexpected, try version v0.2.68 I just uploaded.
  5. Today
  6. After update and extra restart: [26.06.2026] [11:00:29] [WARNING] [QUICKAPP397]: Missing resource type:clip (further events for this type will be ignored) [26.06.2026] [11:00:38] [WARNING] [QUICKAPP397]: Missing resource type:smart_scene (further events for this type will be ignored) [26.06.2026] [11:00:40] [WARNING] [QUICKAPP397]: Variable sseHeartbeat not found [26.06.2026] [11:12:44] [WARNING] [QUICKAPP397]: Missing resource type:clip (further events for this type will be ignored) [26.06.2026] [11:12:48] [WARNING] [QUICKAPP397]: Missing resource type:smart_scene (further events for this type will be ignored) [26.06.2026] [11:13:50] [WARNING] [QUICKAPP397]: Missing resource type:clip (further events for this type will be ignored) [26.06.2026] [11:13:55] [WARNING] [QUICKAPP397]: Missing resource type:smart_scene (further events for this type will be ignored)
  7. The "Missing resource type:xxx" is no problem, just a reminder that these Hue resources are not supported. The "Variable sseHeartbeat not found", I have made silent. "Class does not have 15 function defined - action ignored" is very strange. I made some changes in the last version, please report if you still get the warning-
  8. Jan any progress to be informed about new version update? Subscribe for e-mail notification?
  9. A note about time check t1..t2. rule("10:00..11:00 => ... ") will trigger the rule at 10:00, and it will also trigger the rule at 11:00:01, e.g. 1 second after the second bound. However, that last trigger will usually fail as 11:00:01 is not within 10:00..11.00 The reason that ER will anyway generate a trigger for 11:00:01 is that we may have a rule like rule("!(10:00..11:00) => ...") meaning if we are not in the interval, the condition should be true. Now because we trigger at 11:00:01 that is outside the interval, the test is false, but the not version is true and the condition becomes true... what we want.
  10. Jan, after update v02.66 I have only warnings, so Yahue works great! [26.06.2026] [10:42:09] [WARNING] [QUICKAPP397]: Missing resource type:smart_scene (further events for this type will be ignored) [26.06.2026] [10:42:10] [WARNING] [QUICKAPP397]: Variable sseHeartbeat not found [26.06.2026] [10:45:28] [WARNING] [QUICKAPP397]: Class does not have 15 function defined - action ignored [26.06.2026] [10:45:30] [WARNING] [QUICKAPP397]: Class does not have 15 function defined - action ignored [26.06.2026] [10:45:59] [WARNING] [QUICKAPP397]: Class does not have 15 function defined - action ignored [26.06.2026] [10:46:14] [WARNING] [QUICKAPP397]: Missing resource type:clip (further events for this type will be ignored) [26.06.2026] [10:46:19] [WARNING] [QUICKAPP397]: Missing resource type:smart_scene (further events for this type will be ignored) [26.06.2026] [10:46:19] [WARNING] [QUICKAPP397]: Variable sseHeartbeat not found Can I perhaps solve a few warnings?
  11. Yes, it looks ok. You could do local p = loadProfile() for dtime,data in pairs(p) do assert(data.start and data.ed,"Incomplete TimeProfile for "..dtime) rule(string.format("%s..%s => $DayTime='%s'", data.start, data.ed, dtime) ).start() end You may also want to check that there is a Morning,Day,Event,Night field in p.
  12. I had spelled it vnum... pushed new version with the correct wnum variable defined. (v0.1.47)
  13. Fixed in latest version. Now ID:msg will use fibaro.alert('simplePush',{id},...) The push push method can be changed by setting fibaro._pushMethod = 'simplePush' to ex. 'push'. However, I have only made it work for me with 'simplePush'
  14. OMG that's crazy. How can I explain this to my family members? 😊 I can bypass keypad wake up by this command, am I right? -- Disable LED sleep mode - we are away fibaro.call(keypad_ID, "setConfiguration", 4, 1, 0) fibaro.debug("SceneARM", "Sleep mode disabled - LED stays on") So unlock will have two phases only. Once more thank you.
  15. Ok, the parse error could actually have been a problem that caused 429 in other scenarios too. I uploaded v 0.2.66 with some fixes I hope will improve it - including allowing for better performance.
  16. Jan, getting error [26.06.2026] [08:15:00] [ERROR] [QUICKAPP668]: ❌ RULE71: Undefined variable: 'wnum' @08:15 & wday('fri') & wnum % 8 == 0 =>
  17. Yesterday
  18. Thanks. And if I want more that one kind of info - the values can be combined like bit flags? or maybe table can be used? I mean: self.logLevel = ERROR | DEBUG -- or: self.logLevel = {ERROR, DEBUG}
  19. I'm having issues in trying to update HC3 from 5.202.54 (beta) to 5.210.12. Keep getting error when downloading the update: "Download checksum error" System works fine on current version. No issues in creating backup but not able to update. I usually have this problem with each update but usually language change helps to get it through. Trying for last few weeks and this time nothing. Restarted device multiple times. Any thoughts please?
  20. Hi @Flexo no worries, the answer is here:
  21. @jgabhi !here is my eventrun7 rule , Is this correct to use? TimeProfile: {"Morning":{"start":"06:00","ed":"10:00"},"Day":{"start":"10:00","ed":"18:00"},"Evening":{"start":"18:00","ed":"22:00"},"Night":{"start":"22:00","ed":"06:00"}} local function loadProfile() local raw = fibaro.getGlobalVariable("TimeProfile") if type(raw) ~= "string" then error("TimeProfile must be JSON string") end local ok, profile = pcall(json.decode, raw) if not ok or type(profile) ~= "table" then error("TimeProfile JSON invalid") end return profile end rule([[$TimeProfile => log('TimeProfile changed') plugin.restart() ]]) local p = loadProfile() rule(string.format("%s..%s => $DayTime='Morning'", p.Morning.start, p.Morning.ed )).start() rule(string.format("%s..%s => $DayTime='Day'", p.Day.start, p.Day.ed )).start() rule(string.format("%s..%s => $DayTime='Evening'", p.Evening.start, p.Evening.ed )).start() rule(string.format("%s..%s => $DayTime='Night'", p.Night.start, p.Night.ed )).start()
  22. Hi @ll I am not able to enter the system after reset ! (HC3 with v5.210.12) User: admin Password: admin Doesnt work anymore, I tried the older ones.. doesnt work ! I did also a recovery from the revovery mode. Thanks for some suggestions. Flexo Solved.
  23. as i said, it works in access control mode, as you can see i do have users with PIN, and my keypad is set to access control The user has to wake up keypad, enter PIN, confirm it with unlock key, the keypad will then lit up blue which means it is unlocked and it does react to central scene events You see in my logs, unlocked and then central scene on key 11 to ARM, or unlock and then central scene on key 12 to DISARM
  24. Thank you, you were right, I asked before fully exploring the available options. I have now developed a working Nilan Gateway QuickApp and shared it here in the community. It communicates locally using UDP Thanks for the clarification. https://marketplace.fibaro.com/items/nilan-gateway-qa
  25. Last week
  26. Jan how to write in ER7? RULE142: ./include/props.lua:268: Wrong parameter type, string required. Provided param 'nil' is type of nil user:msg = 'Partitie 03 Ramen appartement is BETREDEN!!!!!!!!!!!!'; ^^^^
  27. Sorry in fact everything was working (again) after the reboot but all Fibaro new messages went into the Spam (unwanted) email...Corrected and everything back to normal.
  28. I'm not sure, but sometimes reboot, or recovery helped me, when thing were wrong. I just got into the same problem: a week ago I was still receiving email but now no way. I have not find any reason why... code is: fibaro:call(2,"sendEmail","Dead nodes","La scène 20 vient de redémarrer") I did reboot the HC2 with no success (with or without backup)! I will open a ticket
  29. @ChristianSogaard https://manuals.fibaro.com/home-center-3-quick-apps/, check section about UDP there.
  1. Load more activity
×
×
  • Create New...