Search the Community
Showing results for tags 'status'.
-
Hello Im looking for at faster way to arm/disarm my system from a widget. I know it´s possible with a scene-widget but then there is no requirement of a PIN (or fingerprint) which seems bad if a phone is dropped outside the house for some reason. Because of that I also don´t want to use GPS, which by the way doesn´t seem to work that great and what happens if the phone goes to batterysave-mode and turns off GPS? Also a battery drainer... I have lockcode on my phone but my wife is not keen on that (you need to have instant access to Instagram and Pinterest! 😂) Lockcod
-
Witam Mam prośbę, czy mógłby mi ktoś rzucić okiem na kod pętli głównej urządzenia wirtualnego? Mianowicie chodzi o to, że urządzenie działa poprawnie, służy do sterowania klimakonwektorem, jednak nie wyświetla mi stanu poszczególnych elementów na etykietach. Co zrobiłem źle w kodzie pętli głównej? klima_salon_2(1).vfib
-
Version 2.0
1,062 downloads
Several times I've got lost in my system to identify specific device. I believe many of us have old devices/scenes that have been hidden or disabled. After a while, finding them again is quite a headache and not an easy task. I have written a scene that shows all existing devices, scenes, users and mobile devices with some extra data of properties. The scene output has two formats: a list of devices by rooms a plain list of all components in acceding order of IDs In order to choose between two formats please change as following: local plainLis -
I am looking to create a simple Lua scene that looks to see if the door is locked then do "something". everything I enter to look for the door status it is not working. Someone please tell me what I am doing wrong. 92 = my door lock --[[ %% properties %% events %% globals --]] local User = "User_Present"; if tonumber(fibaro:getValue(92, "secured")) == 0 then fibaro:setGlobal(User,"0") fibaro:debug("Door locked"); end
-
Hi, I have multiple devices hooked up to Alexa via the smart home skill. It seems Alexa now supports getting the status of a device: "Alexa, are Kitchen Lights on?" Is there a way to enable this for Fibaro devices as well? It would be extremely helpful to be able to ask Alexa for the device status. Right now we get a reply "Kitchen Lights does not support that" while other (non-Fibaro) Alexa integrated binary switches reply with the correct status.
-
Hello, Tell me, knowing guys) I wrote a scene that tracks the state of light in the room and passes it to a global variable. But this scene constantly reports that too many instances are running ( The room has a physical switch that, depending on this global variable, turns off or turns on the light in the opposite direction. Maybe there is a more elegant way to write this scene? Thanks ) --[[ %% autostart %% properties 15 value -- main light 23 value -- window light 21 value -- inner light 97 value -- outer light %% events %% globals --]] fibaro
- 5 replies
-
- global variable
- light
-
(and 1 more)
Tagged with:
-
It'd be great to get status of sending email and push (true/false). For example: when there is Internet connection problem. It should be easy to implement for Fibaro team and it'd give us more reliability. local mailSuccess = fibaro:call(2, "sendEmail", "title", "message") local pushSuccess = fibaro:call(2, "sendPush", "message") It'd be used in @AutoFrank SMsgH to queue messages.
-
Hi everyone, Is it possible to create a virtual device to view my current variable values? I've seen guys do this with LUA, but not on an HCL which doesn't have the option. Using LUA and HC2 http://forum.fibaro.com/index.php?/topic/21002-variable-status/ Thank you.