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 'hc3'.
-
Hello, I have a serious and urgent problem. I set up a Home Center 3 in one of my friends house. After finishing everything and installing all the modules, I wanted to give him mobile access through Yubii App. To my surprise I find the app giving me an error with title: " homecenter is not fully configured yet" Below are screenshots to support my findings
- 4 replies
-
- yubii home
- fibaro
-
(and 5 more)
Tagged with:
-
How to run an existing block scene from the android device using the "Welcome Home" mobile app?
-
Hello Fibaro community ! I am trying to pair switch FGS-211 with Fibaro Home Center 3 (not the lite version) as my old Vera died and I have to reconfigure all z-wave devices. I could not de-associate FGS-211 from older controller as it died, so I wen't through reset procedure (3 seconds push on B-pin after power on). Now I am trying to associate it with the new Fibaro HC3 without success. I am enabling inclusion mode, being really close to the controller and nothing happens, the device is not found. I have number of those switches in use, so I would be really sad if they are incompatible with HC3. Note that I have successfully paired FIBARO Roller Shutter 3 and Danfoss Z-wave thermostat with the main unit. Is this know problem or maybe I should perform some different path to include the device into HC3 rather then simple + and search for z-wave devices? During initial setup my HC3 asked if I want to be on 2.0 or 3.0 (beta) version, of course I selected newest and greatest , maybe that's the problem ?
- 3 replies
-
- hc3
- singleswitch
-
(and 1 more)
Tagged with:
-
I am very conversant with the HC2 stuff. For the HC3, the last time I looked at this a year ago, the offerings were rather disappointing with a steep learning curve. Could some one recommend A decent example of a lua scene. I am fine with the language change - I have just grepped and done global modifications on my 30 odd lua scenes. I am looking for a better explanation of the new trigger mechanism. A decent example of the new VD and any gotchas. Before I could just save the lua as a text file on pc with versioning. How are people saving the new scenes, as they come in two parts ?
-
We have a strange situation with several RGBW (2) controllers. Customer has around 10 of those modules. Most are RGBW controller, on the latest firmware, and parameter to disable associations is on. 3 of them are RGBW2 controllers. Now, client has several scenes to change the color of the RGBW modules. This works sometimes, but on other moments when the scene is started, the LED get a completely different colour. We had this behavior when client was on HC2, we migrated to HC3 and the same thing happens So, what options do we have?
-
Like to have a blockscen that turn on a switch at 06:00 and turn off att 07:15 with condition it´s before sunrise
- 1 reply
-
- blockscene
- sunrise
-
(and 1 more)
Tagged with:
-
I was looking for a solution to get my Fibaro HC3 to trigger an Alexa routine, it appears that only devices such as a contact or a motion sensor can be used as an Alexa routine trigger. Then I watched a YouTube video by Brian from “Automate Your Life” where he makes a virtual device to interface between SmartThings and Alexa, in SmartThings it’s called a “Device handler” which I presume is similar to a Fibaro QuickApp. This consisted of a switch combined with a contact, when the switch is triggered the contact closes, this contact can be used to trigger an Alexa routine. https://www.youtube.com/watch?app=desktop&v=BqJ3cHHcNyc&feature=youtu.be As I don’t know much about virtual devices in Fibaro controllers I thought maybe I can do the same with a physical device, such a Smart Implant FGBS-222 which incorporates switches and contacts. Out of the box triggering an input causes the output switch to change state, what I needed was the other way around. In the setup I disconnected the inputs from the outputs then hard wired the inputs to the outputs so when the output relay switch is turned on from within HC3 the input is pulled to ground. It works ! the input contact is now visible in Alexa routines as a trigger, now I can use a scene to turn on the output relay switch and this in turn activates the input contact and the Alexa routine. The possibilities created by this are endless only limited by your imagination, from getting Alexa to read out messages to controlling other devices which Alexa has access to but Fibaro does not. BUT Smart Implant devices are expensive currently £35 on Amazon here in the UK SO All you programmers out there, is it possible to make a QuickApp with the same functionality ?
- 7 replies
-
- quickapp
- alexa routine
-
(and 1 more)
Tagged with:
-
Integracja Fibaro HC3 QuickAPP z ESP8266 Cześć, nie znalazłem nigdzie działającej integracji hc3 quickapp i esp8266, więc postanowiłem sam taką stworzyć. Instalacja Instalujemy ESPEASY po szczegóły odsyłam na https://www.letscontrolit.com/wiki/index.php/ESPEasy Konfigurujemy połączenie Wi-Fi do naszej sieci domowej Na routerze musimy zarezerwować adres IP który dostało ESP8266 Dodajemy QuickAPP: -> -> -> Wskazujemy plik z załącznika ESP8266_Przekaznik.fqa W zakładce zmienne edytujemy adres IP urządzenia oraz pin na którym znajduje się przekaźnik Jak działa kod Po otwarciu strony http://adresip/control?cmd=GPIO,0,1 zmienia się stan na naszym pinie Kod napisałem w ten sposób, że LUA analizuje zwrotny kod JSON z ESP8266 przez co mamy potwierdzenie że polecenie włączenia lub wyłączenia zostało wykonane. ESP8266_Przekaznik.fqa
-
Hi All, Recently we installed Danalock to control our entrance door. Is it possible to add to Alexa through Fibaro? I have tried to look up the device number of times but poor Alexa couldn't find it. I am using HC3.
-
At the moment I'm working on trying to integrate the Somfy Tahoma/Switch IO system. At my local system (with TQAE) I can connect to the API to get a access token. When I run exactly the same code on the HC3 I get a HTTP 404 error (Page Not Found). The code isn't that complicated: function QuickApp:GetAuth() local url = "https://accounts.somfy.com/oauth/oauth/v2/auth?response_type=code&client_id=o59WTNp303e1ABRg1j4bJ8COYGGmEZdc6N8X1_CRDyyWE6&grant_type=authorization_code" self.http:request(url, { options = { headers = {["Content-Type"] = "application/x-www-form-urlencoded"}, method = 'GET', }, success = function(response) self:debug(response.status) --self:debug(response.headers) local csrf_token = string.match(response.data, "value=\"(.-)\"") self:debug(csrf_token) print(response.data:gsub("<","<")) --self:getToken(csrf_token) end , error = function(message) self:debug("error:", message) end }) end The HC3 doesn't show me the body or headers when an error occurs. In the message variable only the error code is shown (404). Has someone experience with this? I tried everything, it looks like they are blocking traffic from the HC3. I tried to add another User-Agent string, but no luck.
-
Use stored energy data in Energy Panel selectbox not working?
Joep posted a question in Home Center 3
I'm working on a P1 meter readout for our smartmeter to feed the new Energy Panel. The QA has several child devices and two devices that return energy to the net. I gave this device the production meter configuration. I don't want to save this production data to the Energy Panel, because this is not real production, it's overhead energy that go's back to the grid. So I deselected the option Use stored energy data in Energy Panel: But the Energy Panel still displays the energy produced by this child device as production: The Energy Panel works this way right? 1. Production = Solar Panel energy 2. Consumption = Devices 3. Smart Meter consumption readout set as main devices = Smart Meter consumption - Devices = rest. 4. In the end of the day, when Energy Panel production - consumption is a positive number, this number must represent the Smart Meter return to grid value. The Energy Panel reporting the production (read overhead at p1) while the selectbox is unselected is a bug right?. Or am I thinking wrong? @m.roszak- 3 replies
-
- hc3
- energymeter
-
(and 2 more)
Tagged with:
-
Kamery wifi IMOU, HC3 i aplikacja Yubii
przemas.przyborowski posted a question in Urządzenia Firm Trzecich
Witam. W aplikacji Yubii (1.15) jest taki link "Co nowego w aplikacji?". Jest tam napisane, że jest możliwość korzystania ze strumienia audio i wideo na żywo z kamer IMOU. No i fajnie. Mi osobiście podoba się do domu (wewnętrzna) IMOU CUE 2. Ale jak ją dodać do HC3. Jakieś wskazówki, instrukcje? Skoro reklamujecie kamery w aplikacji tzn, że ktoś to przetestował... podzielcie się tą wiedzą. Pozdrawiam -
Niedziałające równania w scenach blokowych HC3
FelipeCarlos posted a question in Scenes and Interface
Witam wszystkich, Po aktualizacji mojej HC3 do najnowszej wersji 5.100.22 zauważyłem, ze niektóre sceny blokowe, przestały działa we właściwy sposób. Np. mam zrobiona scenę blokowa, która uruchomiona manualnie ma sprawdzić czy wszystkie rolety w domu są zamknięte i wysłać push do użytkownika z informacja „Zamknięte” Zależność jest zrobiona na zasadzie, jeżeli == 0% to wyślij „Zamknięte”. Niestety zauważyłem, ze scena wysyła ten sam komunikat nawet, jeżeli nie jest to 0%. Roleta może być w dowolnej pozycji, np. 100% i tez dostane komunikat „zamknięte”. Zmieniając znaki zależności, czy wartości ustawienia rolety w scenie, to i tak zawsze dostane komunikat ‘zamknięte” Oczywiście odnosi się to do wszystkich innych scen gdzie wykorzystywane są zależności większe, równe, mniejsze itp. Również ze wszystkimi innymi urządzeniami. Jednym słowem większość moich scen blokowych przestało działać. Nie wiem czy to jest problem nowego SW, bo tez próbowałem wrócić z bakup’u do poprzedniej wersji 5.90, ale problem pozostaje również w tej wersji. Jakieś sugestie? Z góry dziękuje i pozdrawiam -
Hi, I have been adding my fibaro dimmers to my new fibaro HC3. When I add my Dimmer1s, they show up on the devices table with a Role of "dimmer 2" and in General it shows the Type as "com.fibaro.FGD212" When I add my Dimmer2s they show up as either "Dimmer 2" like above (what I would expect) or some get added with a Role of "Multilevel switch", and in General it shows the Type as "com.fibaro.multilevelSwitch". Why are the Dimmer2 being added as "Multilevel switch"? Does it matter? Am I adding them wrong? The "Multilevel switch" has only 41 parameters the Dimmer2 has 59. What am I missing? Thanks Rut.
-
Hi all!! Thank you all for this forum and all nice people that helping eachother out. Now its my turn to ask a question regarding LUA scripting, a script that makes my system to stall within 24h What the script basicaly does is that it checks if doors, windows, motionsencors etc is open or closed and then send it to a QA but also to a global value from a standard LUA scene. I am running the QA on diffrent screens in my home to so i get a nice view of what´s going on. The global value i pick up then i am arming the house and sending it to a a TTS-script. Always nice to hear a voice that tells me that a window is open etc... when i am leaving. But i think something is draining resources, i have tried to only activate the script via Conditions and Triggers, but also via a loop with diffrent sleep times. It does not say in Diagnostics that i am out of recourses se my sample below short version (The script works fine but after aprox 24h HC3 stalls or not working as expected ). How can i do it better ? ::BEGIN:: local var = {}; local debug = 1; ----------------WINDOWS------------ local Windows = ""; local WindowsAlarm = ""; local WindowsLiving = ""; local WindowsLivingAlarm = ""; local WLiving = fibaro.getValue(249, "value"); --...and 6 more sencors ----------------DOORS------------ local Doors = ""; local DoorsAlarm = ""; local Freezer = "" ; local FreezerAlarm = "" ; local DFreezer = fibaro.getValue(355, "value") ; --...and 10 more sencors ----------------MOTION---------- local Motion = ""; local MotionAlarm = ""; local Kitchen = ""; local KitchenAlarm = ""; local MKitchen = fibaro.getValue(21, "value"); --...and 7 more sencors ----------------Switches 1st and 2nd floor---- --...About 30 switches ----------------TEMPS---------------------- --... collecting temps round house ----------------Secure-------------------- local SecureFrontdoor = " " local Parm = " " -- ...Checking if frontdoor is locked and if it is armed etc... ----------------Garage-------------------- -- ... same with garage local Garage = "Garage : " ..IR ..Outlet ..Mainlight ..Port ----------------Setting Variable--------- if WLiving == true then WindowsLiving = "Livingroom" WindowsLivingAlarm = "Vardagsrums fönster, " end; if DFreezer == true then Freezer= "Frys, " FreezerAlarm = "Frysdörr. " end ; if MKitchen == true then Kitchen = "Köket, " KitchenAlarm = "Rörelse i köket, " end; if fibaro.getValue(30, "value") == true then sink = fibaro.getName(30)..", " end; -------------CONSOLIDATE --------------- Windows = "Fönster: " ..WindowsLiving .." " .. Bathroom; -- for screens QA var.WindowsAlarm = WindowsLivingAlarm ..BathroomAlarm; Doors = "Dörrar: " ..Refrigerator .." "..StoreTrash ; -- for screens QA var.DoorsAlarm = RefrigeratorAlarm ..StoreTrashAlarm ; Motion = "Rörelse:" ..Kitchen .." "..Shower ; -- for screens QA var.MotionAlarm = KitchenAlarm ..ShowerAlarm ; -- .. and some more... -------------SEND UPDATES---------------------------------------------------------------------- fibaro.call(103,"updateView","windows","text", Windows); fibaro.call(103,"updateView","doors","text", Doors) fibaro.call(103,"updateView","detectors","text", Motion); fibaro.call(103,"updateView","avgtemp","text", avgtemp) ; fibaro.call(103,"updateView","secure","text", SecureFrontdoor .." " ..Parm ); fibaro.call(103,"updateView","garage","text", Garage) ; fibaro.call(103,"updateView","first","text",first) ; fibaro.call(103,"updateView","second","text",second) ; fibaro.setGlobalVariable('Status',json.encode(var)) -------------DEBUG-------------- ------Loop Me ------------------ fibaro.sleep(5*1000); goto BEGIN
-
Hi guys, I was installing Fibaro radiator heads for my customer, when we realized, how inexplicably awkward is the software that is handling this product. The shame is on me, becuase I didn't tested it properly before we accepted the order. Here I want to ask any Fibaro technicians, how could any product developer allow the production of a radiator head, when user is NOT ALLOWED TO CHANGE THE SETPOINT PERMANENTLY from the Yubii app, and also USERS DONT HAVE ACCESS TO CLIMATE PLAN IN YUBII APP... Like this is not a mistake, this is a ridiculous mistake and a huge fault of developers. I just can't explain, how can this happen in a company like Fibaro.. What does that problem mean? My customer (not a PC oriented person) asked me to create a plan for his house..Day 23 celsius, and night 22 celsius (what I did, according to his demand) A few days later he called me, that they are cold , so he wants to put all radiators to 24 celsius permanently for day and night either..just set it to 24 everywhere.. Belive or not, i had to come to the conclusion, that its not possible. User can't set manualy a temperature permanenty..just for certain time period..max 24 hour, than it jumps back to the plan value.. Hold on, this is not the entire story... As the plan is not reachable from mobile APP, i needed to remotely deactivate the plan for him..i thought this way we can find a workaround... No... Even if you don't have a plan, you can't set any value permanently on your radiator.. Example..Lets say, you dont have any cilimate plan, and your radiators are running on 22 celsius.. Later you want to change this permanently to 21 celsius...BUT YOU CANT You can do it only for max 24 hours...than it jumps back to 22 celsius... I was thinking, maybe if we set the time to 00h:00min, it will help... We couln't even try it, becuase in the Yubii app the minimum value is 10 min... So what was I supposed to do? Should I told him, that he needs to manualy set all his 18 radiators every single day to the desired temperature? I would appreciate any suggestions... Thanks
- 1 reply
-
- radiator thermostat
- fibaro
-
(and 2 more)
Tagged with:
-
Issue with return of state between Simon iO actuators and HC3
dmtcs posted a question in Home Center 3
Hello everyone, I have just integrated several Simon iO actuators with HC3 and there is an issue with the devices' state which does not change properly neither in the web interface nor Yubii app. This happens for the following actuators: - Simon 100 iO Roller Shutters - Simon 100 iO Dimmers The update of device's state is not automatically reported to web interface/app when pressing manually the roller shutter switch or dimmer. The same happens when the device's control is coming from the app/web interface. For example, you set the shutter to be closed (0%) but the state in the app/web interface still shows opened (100%). I am using Z-Wave 3.0 and the HC3 firmware version is 5.080.20. I tried to force this communication between the devices and the HC3 through associations but with the same result. Apart from this, there are no templates for the Simon 100 iO devices and I can not add/modify any parameter in the web interface (don't have the option in parameters) or poll them. For example, I can not set a basic_report command to the controller when the devices change their states in order to force their updates in the system. Is this due to Z-Wave 3.0 and a HC3 firmware update which has not come yet? Has anybody any suggestions? Thank you in advance. Regards -
Hi dear Fibaro people. Anyone know how I can create a button in the app (for HC3) that I can use to enable or disable a scene? (A recipe would have been brilliant )
-
5.081.18 Hi friends. Could someone help me. I can't include it to HC3 system correctly. If i use the add-dialog without "s2 checked box' - the SCS C17 appears on the GUI HC3 with succes. But no "antenna" sign on screen of SCSC17. And without any reaction bw HC3 and SCSC17 - no update temperature, setpopoint adn etc. I understand that my SCSC17 doesnt use the S2 security level. and so i can't use 15 pcs of it on new HC3 that i bought instead of HC2...upset
-
So, I've just recently got the HC3 and so far its been a bit of a battle to get it working any where close to the HC2. Out of the box, the setup script didn't work and it took a couple of iterations before I got through it. In no particular order here's some of the issues I've encountered to date: * The GUI is very slow, sometimes to the point that mouse clicks are missed, and certain portions of the GUI are not rendered. * The time can be out. At one point the clock on the banner was showing 1551, but the history was showing events with the correct time of 1630. * A lot of devices will appear as unavailable - in particular all my Fibaro Motion Sensors and Popp TRVs. I've changed some parameters on the Aeon/Aotech device I have as I suspect the network is busy * The Fibaro motion detectors are not detecting motion, they are reporting temperature, lux and will flash on the device when motion is detected... but not in the web UI. * Fibaro door/window detectors are not detecting doors opening. They appear to be reporting temperatures OK * Secure SRT Thermostat. One of these works, the other is reporting a temperature at least 10C higher than the room * Secure SRT Thermostats & Popp TRVs. There is no ability to set a temperature setpoint on these, and in the climate panel there's a warning that they may not work. They do work using the climate panel * Fibaro RGBW. The on/off button does not function and it doesn''t look like RGBW mode is supported. In fact, when included the RGB panel was hidden and five individual sliders were shown instead. It is impossible to control from any scenes. Setting a colour slider causes multiple entries to be logged in the history - one from user with set colour, then two, three, sometimes more from system with completed incorrect RGB values. * Everspring ST815 Light Sensor. Includes OK, never updates any value and doesn't send a command to the associated devices * Lots of devices without templates That's all for now, but these were all features that just worked in the HC2. In general, its not a good experience and trying to explain to my wife why she can't control the heating and that the lights in the kitchen aren't working is not easy. Other things that I wanted was the promised support of Zigbee and RF433 protocols, but they appear to be a distant dream for now.
-
Hello HC3 owners/guru's, Is there anyone who can tell me what the impact is of a change of the physical location of a HC3 device? Currently I am living in Europe (Belgium). I might have to move to Asia (Philippines) next year and want to bring my HC3 and re-install it there in my new house. I see the following 2 potential problems: Z-wave allowed frequency bands and standards used are the same in these 2 locations, but there might be other restriction I am not aware of. The centralized monitoring/support of all HC3 gateways via the HC3 device ID might be disrupted if you move the device to another world region or country. Note: I experienced a similar problem (issue 2 above) when I moved around with my printer from Thailand to the Philippines a few years ago, as the ink cartridges are not interchangeable between the 2 countries and other regions.. I guess this is a question for Fibaro HC3 guru's or a Fibaro company HC3 specialist. Your help would be appreciated if you can answer my questions or can tell me how to contact a Fibaro HC3 specialist. Thanks Leo I used the below URL for my short survey. URL: https://www.silabs.com/wireless/z-wave/global-regions EU 868.4 MHz, 869.85 MHz - Standard EN 300 220 PH 868.4 MHz, 869.85 MHz - Standard EN 300 220
-
Cześć, Czy ktoś ma pomysł jak ustawić Aoetec Siren 6 tak, aby alarm nieprzerwanie się powtarzał do momentu rozbrojenia alarmu? Wczoraj miałem naruszenie czujki (na szczęście przez psa) i alarm włączył się tylko na 35s i cisza. Ja się obudziłem, ale reszta domowników już nie. A co jeśli jeden "dzwonek" nas nie obudzi podczas prawdziwego włamania? Jaka jest funkcja w LUA, aby powtarzać czynność do momentu spełnienia określonego warunku. (czy ten kod posiada cos jak elseif ?)
- 2 replies
-
- aeotec siren 6
- hc3
-
(and 1 more)
Tagged with:
-
Hello, Please help with topic how to set aeotc siren 6 to turn on the sound until I disarm alarm.
- 2 replies
-
- aeotec siren 6
- hc3
-
(and 1 more)
Tagged with:
-
So, i'm still setting up the HC3. And run into some problems. I have 2 Zwave devices: a 8 button wall switch and a Fibaro multi sensor. The wall switch is configured to run some scene's. And the sensor is for later use, but also "adopted" in the device list. This is the second time in a few days, that the zwave devices stop working. The buttons stop activating the scene's, while when i start the scene manually it still works. The multi sensor shows up with a red cross in the device list. When i noticed this before, i just rebooted the HC3. And then it all works again. How can i troubleshoot this ? The console doesnt tell me anything..
-
I want to know how to integrate HC3 with Broadlink RM4 PRO? If anyone created Quick apps for Broadlink devices could you please share with me the details?
- 13 replies
-
- broadlink
- fibaro hc3
-
(and 1 more)
Tagged with: