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


Search the Community

Showing results for tags 'hc3'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • FIBARO Community
    • FIBARO Portal and Forum policy
    • FIBARO
    • Say hello!
    • Off-topics
  • FIBARO Update
    • FIBARO System Update
    • FIBARO Mobile Update
  • FIBARO Community Support
    • Scenes and Interface
    • FIBARO Products
    • FIBARO Mobile
    • FIBARO HomeKit
    • FIBARO Assistant Integrations
    • Other Devices / Third-party devices
    • Tutorials and Guides
    • Home Automation
    • Suggestions
  • FIBARO Społeczność
    • FIBARO
    • Przywitaj się!
    • Off-topic
  • FIBARO Aktualizacja
    • FIBARO System Aktualizacja
    • FIBARO Mobile Aktualizacja
  • FIBARO Wsparcie Społeczności
    • Sceny i Interfejs
    • FIBARO Urządzenia
    • FIBARO Mobilnie
    • FIBARO HomeKit
    • Integracja z Amazon Alexa i Google Home
    • Urządzenia Firm Trzecich
    • Poradniki
    • Automatyka Domowa
    • Sugestie

Categories

  • Scenes
  • Virtual Devices
  • Quick Apps
  • Icons

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Facebook


Google+


Skype


Website URL


WhatsApp


Country


Gateway/s


Interests

  1. I used to use HomeCenter.SystemService.reboot() in HC2. What is the equivalent for HC3. And where can I find the api list
  2. Hello, Did someone know if its possible to get outside temperature in garden (Tuin) room? I have installed YR weather. Can i do it with a scene or is it not possible? Thanks.
  3. Hello, I found a project who reverse engineered the Wi-Fi protocol from the Mertik controller connected to my fireplace. Yeay! ? With the following (simplified) NodeJS code I can send the standby command to my fireplace: var net = require('net'); const prefix = '0233303330333033303830' var msg = "3136303003"; var packet = Buffer.from(prefix + msg, 'hex'); var client = new net.Socket(); client.connect(2000, '192.168.1.1'); client.write(packet); I know how to open a socket in HC3 QA but I don't get how to convert the message to a RAW buffer. The JavaScript line does it with Buffer.from(prefix + msg, 'hex'); Does some LUA god know how to convert the message in QA LUA for the HC3?
  4. Dear community, my current project is using Hoobs to control Fibaro HC3 devices, IR controller specifically. Hoobs does not detect the quick apps in HC3. May I know whether there is any method for Hoobs to control quick app in HC3? Thank you.
  5. Anybody knows a way to know what triggered the scene? For example I have a scene, that can be triggered by one of two switches. And in the Lua code I'd like to know which one of these two switches triggered the scene.
  6. Hi, As i just moved recently from HC2 to HC3 i found myself with a heating problem. I have Danfoss Room Sensors and Danfoss LC-13 valves. They are supported in HC3, but i could not modify the temperature from the Danfoss Room Sensor. Even more, at this moment the HC3 climate interface does not allow for manual mode set via the GUI. So i wrote a bit of LUA code that will read the set temperature and set time interval from the Danfoss Room Sensor, will set the climate panel in Manual mode and sync all the TRV's. Hope it can help someone local fromID = 739 -- Danfoss RS senzor local toID = {721} -- Danfoss LC13 TRV local IdPanel = 1 --Birou fibaro.sleep(11*1000) local dev = api.get("/devices/"..fromID) local devname = dev.name local settemp = dev.properties.heatingThermostatSetpoint local setduration = dev.properties.schedules[1].schedules[1].duration.value local panel = api.get("/panels/climate/" .. IdPanel) panel.mode = "Manual" panel.properties.handSetPointHeating = tonumber(settemp) panel.properties.handTimestamp = os.time() + (60*60*setduration) api.put("/panels/climate/"..IdPanel, panel) fibaro.debug("Scene38","Danfoss TRV Synced With Danfoss RS.", "Climate Panel ", panel.name, "Set to Manual Mode for ", setduration, " Hours, Temperature ", settemp, "Degrees." ) The LUA trigger should be the Danfoss Room Sensor ID: { conditions = { { id = 739, isTrigger = true, operator = "!=", property = "heatingThermostatSetpoint", type = "device", value = 5 } }, operator = "all" } Enjoy
  7. Hello, I have Sonoff temperature/humidity sensor flashed with Tasmota. I'm able to pull temperature into HC3 quickapp variable using MQTT broker. The problem is, that I can not use that temperature in the HC3's Climate zone as reference temperature sensor for my zone (i can choose only from zwave devices). Is there any solution for that? Thank you Max
  8. Well i have a HC3 and i want to create a scene that when a MC is open then light goes on and if MC is closed the light goes off after 5 minutes. Scene that i have is: When door opens then camera takes a snapshot, sends a push notification to mobile. What i want is: When door opens the camera takes a snapshot, sent a notification to my mobile and turn a flood light on, then when door is closed the flood light will stay on for 5 minutes and then automatically turns off.
  9. Have a newly setup up HC3 have started migrating all the rules I had in my old Zipato Zipatiles. At this stage I am sticking to Block Scenes until I skill up in LUA (although did manage to copy and paste a few scripts into QA for http calls) I have managed to get email notifications working but wondering if you can change the "From" address anywhere ... at the moment it comes through as HC3-0000xxxxx Message from FIBARO <My message in here> At a min ideally I would like to replace the HC-0000xxxx with something like "Message from Home" I couldn't find it in any of the configuration settings. Whilst I am here .. any tricks for getting iOS App Push notification working? Doesn't seem to fire on the iPhone at all Thanks Uri Sydney, Australia
  10. Does this Trigger autostart a lua scene ? Its supposed to be gateway start, which makes no sense { type = "se-start", property = "start", operator = "==", value = true, isTrigger = true }
  11. HC3, version: 5.050.13 API endpoint: /events/history Parameter: lastId (Description: requests with id<=lastId will be skipped (only more recent entries then lastId will be returned) Test call: https://HC3-IP/api/events/history?lastId=330776&numberOfRecords=2 Result: [ { "data": { "id": 78, "newValue": 23.5, "oldValue": 23.6, "property": "value" }, "id": 330775, "objects": [ { "id": 78, "type": "device" } ], "sourceId": 0, "sourceType": "system", "timestamp": 1606766914, "type": "DevicePropertyUpdatedEvent" }, { "data": { "id": 27, "newValue": false, "oldValue": true, "property": "value" }, "id": 330774, "objects": [ { "id": 27, "type": "device" } ], "sourceId": 0, "sourceType": "system", "timestamp": 1606766874, "type": "DevicePropertyUpdatedEvent" } ] It seems data are returned in wrong order, not recent but older entries are returned.
  12. Hi, I'm a new user of the Fibaro ecosystem and I'm facing some issues. One of them has to do with controlling the heat in my home. I have setup zones - 1 per room, and each zone contains 1 Heat controller. I have a HC3 and I see there are several ways in which you can control the temperature - from the Heat Controller directly, or through Zones. I tried working with the temp view in the website (/app/climate/temperature), but also with the mobile app through manual settings on the thermostats. Anyway, in the end I did "back to schedule for all" and my zones show up OK: You can see Living Room set at 24C. However, if I go to the climate view under settings, the thermostat for Living Room shows up as 26C (an older value set via the mobile app BEFORE choosing "back to schedule for all"). This is really odd to me. I'm curious 1. if I'm encountering a bug and 2. what is the "recommended" way to handle temp control in HC3? Thanks! Mihnea
  13. Hello, I want to install my Foscam FI9902P camera to my HC3. - Add IP camera is OK but in the Foscam list I find "other" or "FI8904W". I tried both. - I serached the IP and added ( just IP ) - I also added to the jpg stream path /cgi-bin/CGIProxy.fcgi?cmd=snapPicture2&usr=USER&pwd=PASSWORD ( User & password is the same what I use for connect. This line was OK in my HC2 ) - No any picture if I test it. Can you help me what can be wrong ? See pictures No picture
  14. Hello, Does anyone already re-made the QuickApp for Siren Gen5? I want to use the different sounds of the Siren like in the HC2 with the VD.
  15. Hello, I have some Qubino smart meters and would like to get the power values from these. As far as I understand (beeing a newbee) polling could be done in three different ways defined in the device advanced settings. 1. Polled att periodic intervals with specified polling time 2. Using the global polling queue 3. Exclude from polling (but using e.g. triggers) Tried to figure out the details about this but nothing mentioned in Fibaro manuals like Home Center 3 manual or Lua Scenes manual so I did some experiments with all three methods. (in case 3 I used a scene where the condition allways = true). The result: In the first case I have marked the 300 seconds polling with green. Obviously there are pollings done outside of the 300 second period. Have no idea why. In the second case the polling delay varies a lot from 10 seconds to over 5 minutes. Have no idea why? Besides the Qubino Smart Meter I onloy have a Fibaro Wall Plug so the load on the HC3 can not be that large. In the third case the delay is mainly between 10 to 50 seconds so obviously this is the fast method. I guess that delays time may increase when you add more scenes with isTrigger = true. Conclusion. Compared to HC2 the HC3 misses a lot when it comes to displaying consumption. As a consequence you will have to do a lot yourself. For this to work you need good and detailed documentation. Unfortunately that seems not to be the case e.g. when it comes to the condition statements in scenes. I would like to have a detailed description of all possibel operators that can be used in conditions and how they work. I have searched a lot but not found any such document. I have of course found a lot of specific solutions in this forum where a variety of operators have been used but no general and complete description of what is possible to do. If some Fibaro people in Wysogotowo read this it would be nice to hear if there are any plans for a more detailed and througout documentation of the HC3 software. By the way, I assume the OS of the HC3 is some Unix variant as times are given as seconds from 1970. It would also be nice to see the HC3 software upgrade plan (if any exists) and what these upgrades are planned to contain. Regards, Bernhard Stockman
  16. Hello, I'm using 90% Fibaro Devices but for some specific function, or too big pricing difference with Fibaro for similar purpose, I'm using other devices (Qubino, NeoCoolCam, ...). I have read several topics on forums, on tested all function around that in HC3 settings (use template, pull parameters, read parameters....), impossible to upload Template from my computer to HC3... Any suggestion??? Regards.
  17. While working from home for eight months now I had the need to toggle a light or run a scene from my Windows 10 laptop. After some Google I didn't find an app so I decided to learn basic C# and create a Windows tray application myself. The application loads your configured rooms, devices and scenes from your HC2/HC3 and puts them in a menu in the system tray. Now you can run a scene or toggle a light switch without reaching for a wall switch or your phone. ? The program looks like this: I Iearn and get a lot from the Fibaro community, therefore I made the code open source on GitHub. You can download the application from the releases page. You only need the .exe file. I don't own a HC3. If it also works on the HC3 please inform me. Than I add it to the documentation.
  18. Hi, i add Aeotec multisensor 6 to my HC3 but it seems not working properly. I try to add and remove 3 times. After installation "wake up interval" is set to 0s and i cant change it. Automatic updates working only for PIR sensor. Temperature, luminance, humidity, uv is not auto updated at all (now for almost 10 hours). I setup thresholds to low values and manual wake up device to sync this settings. Nothing help ... Even threshold for temperature is impossible to change to normal value (eg. 1C). Default value after installation is set to 131097.6 C and after change and sync is always reset to this value. Have someone similar issues with Aeotec multisensor 6? It is device or hc3 related problem?
  19. Hello, I have an empty QA device (temperature device). What's the easiest way to set the value (temperature) using HTTP call (from outside HC3) to the API? Or do I need to provide some method in QA that i.e. the `callAction` REST API will use? I'd prefer to have empty QA and do everything via REST API.
  20. Micx

    email subject

    The new HC3 LUA sytax for email fibaro.alert('email', users, "xxx") has no room for the subject. The subject is always "Message from FIBARO". Is there a way to change this?
  21. After Fibaro ID password was changed, the password to log in to the HC3 is invalid. Someone who has experienced that?
  22. Dear Users, We have good news for those of you who are residents in Holland or Belgium and have been thinking of switching to Home Center 3 recently! FIBARO together with Google Store offer Nest Hub - totally free of charge when buying Home Center 3 at one of selected retailers or dealers. Check out the details of the promo as well as examples of amazing opportunities both products offer here: https://www.fibaro.com/nl/the-smart-google-promo/
  23. cag014

    HC-WebEye

    Version 3.0

    675 downloads

    This is JavaScript code, which displays debug information (in parallel to code development) at full screen on desktop (supports HC2 and HC3 controllers) Main purpose is to support scenes where debug information is in HTML format, like All-in-One Scene, Z-wave monitor/viewer, Z-Range analyzer . All other formats will be displayed in same format as in debugger window. Since HTML format is not supported by HC3 and debugger window is too small, it could be a helpful alternative for better view and debug your code. In many cases variables values include a lot of information (like jSON table) and it couldn't be reviewed by HC interface, this application offers to display Global variables (including QuickApp variables) on "big" screen. Follow information and features are supported: Display debug information of selected scene. (HC2) Display scenes debug information filtered by messages tags including levels (trace, warning,error). (HC3). Note: Currently all scenes print info in same debugger. Issue reported to Fibaro Group - in Progress. Start scene. (HC2/3) VD main and buttons' debug information. (HC2) Select and Press VD button. (HC2) Display current value of selected global variable. (HC2/3) QuickApp debug information. (HC3) . Note: Currently when debug info is loaded it clears debug info from HC3 debugger window. Display current value of selected QuickApp variable. (HC3) Turn On/Off (toggle method) QuickApp (HC3) Select and Press QuickApp button. (HC3) Note: Since HC3 doesn't support HTML format anymore, this is the only option to view and analyze information on upcoming All-in-One Scene and Z-wave monitor applications. After downloading the file please remove .txt extension. Currently supported browser are Firefox, Chrome or IE browsers. Recently Java Scripts are blocked by Cross-Origin Resource Sharing (CORS) mechanism, please download Disable CORS file for further instructions how to disable CORS. How it works: Before execution, open the file to define HC IP-address and HC3 transfer protocol at User Configurable Parameters // ============= USER CONFIGURABLE PARAMETERS ================ var hcip={"HC3":"192.68.0.10","HC2":"10.0.0.69"} var protocol={"HC3":"https"} On first run, login information will be required. (To keep your credentials secured, login data is not stored in file ) Application interface is very simple and self-guided. Select controller: HC2 or HC3 Select item : Scene, V Device, Variable, QuicpApp... Select item of previous selected section. Press "Reload" button to load debug information. By checking debug checkbox, API executed commands are shown. 1. If scene selected "Start" button appears. 2. If V Device selected list of available buttons shown and "Press" button appears. 3. If QuickAppDevice selected, list of available buttons shown. "Press" and "Toggle" buttons appear. By pressing "Toggle" button, QuickApp will turned ON or OFF in sequential order. 4. If Variables selected,list of available variables shown. By selecting the variable, his current value displayed.
  24. Hello I'm new to making scenes in HC3, -just bear with me. Thought to start with some simple things like Trigger and Conditioning. Have a source I want to get a message if the temperature is above 9 degrees But the scene is running even though the temperature is below 9 degrees (see picture) Have tried to read on how to do. Feels like it's a simple thing I am missing I have also the same problem with freezer (not unexpected but i guess ) But i would like to have that on -18 in stead
  25. catak

    HC3 issue

    Two nights ago i received over 100 mesages about the battery low level at a door sensor from my home. After i arrive home i login into the web interface and at that door sensor i unchek the notification for the battery down but the emails still arrive with this warning. From the web interface i did a reboot the HC3. After the reboot the HC3 made himself a autorepair or something like that, and after made himself an auto backup then didn't start and stuck on the rebooting. Ive pluged out and in from the power after 20 minutes of waiting and now i only see few fibaro devices and most of the devices that was installed are gone. Also can't see any device in the mobile app. Made a ticket yesterday morning but didn't receive an answer yet. Anyone know were the autobackup was made? Because in web interface i cant fiind any backup from that night.
×
×
  • Create New...