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 'AC'.

  • 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

Found 14 results

  1. Version 1.0

    127 downloads

    Since Samsung Plugin doesn't work I decided to write custom Samsung Air Conditioner VD. Requirements: Samsung AC Local PHP server (NAS, RPI, ...) Installation: Copy smarthome folder to your php server Edit/rename Bedroom.php, Living room.php files. For each device you need separate file. In each file: enter IP of your AC device enter token of your AC device To get token follow steps 3.1 - 3.5 from this site. Check if your PHP server is working: http://192.168.0.10/smarthome/samsung-ac/Bedroom.php Of course change 192.168.0.10 with the IP of your PHP server. You should see JSON result with status. Something like this: { "power": "Off", "mode": "Cool", "virusDoctor": "Off", "quiet": "On", "wind": "Fix", "temperature": 22, "currentTemperature": 23, "sleep": 0 } Install Air Conditioner VD Edit Air Conditioner VD: Room name must be the same as your PHP file name without .php extension, e.g. Bedroom Enter Address IP of your PHP server, e.g. 192.168.0.10 Port number of your PHP server, usually 80 Add VD icons and enter icons ID at "refresh" button section: Enjoy...
  2. I have a problem with IR Remotec ZXT-120 that when it operates with batteries it can't control the temperature of the AC, it only controls the AC mode. Any ideas how to make it control the temperature. Note: When it operates with the 5V DC power supply it can control the temperature. thanks!
  3. I have some mini split systems installed and I am wondering if it will be posible to connect them to fibaro. They have a remote control, no wall thermostat.
  4. Hello fellow Automaters, I have a problem with a brand new ZXT-120 from Remotec that should control my LG AC unit. Before I found this device I had it set up with a dry contact from LG and a relay switch from Fibaro. It was only allowing me to turn the AC on or off to the state chosen by remote. It wasn't that bad but was also giving me many issues. Switching dry contact mode was disabling LG remote at all - so when time of the year was changing and I wanted to switch from heating to cooling it was very annoying to go through the process - especially that it wasnt very intuitive and required turning the POWER of the device off (which meant disabling electrcity at all in my apartment) But to the point: I have just received my new ZXT-120 from Remotec. The device HW version (found on the sticker) is 1.80. It is working in FLiRS battery mode. When I add it to my HC2 though (4.161Beta) it is being discovered as a version 1.20. I got 4 devices discovered (as per attached pic) and i can communicate with it. Version 1.20 codes only support 4 different codes for LG ACs (parameter 27), while version 1.80 supports 8 or 9 different codes. For me - only the 4 old codes are available from within HC2 parameter 27 (the max value set there is 512, while 1.80 new parameter codes exceed value of 512). The 1.20 old codes do not support some of my AC functions like FAN, and FAN Speeds. I am not sure that it also sends correct commands to my AC unit. I have tried to remove/add it 6 times already. Also With Wide Network Inclusion mode and without it. The standard troubleshooting I did included adding within 10 cm from HC2 and from normal location. It just discovers it as a version 1.20 and there is nothing I can do to change the required parameters. Version 1.80 has also additional code that is below 512 (464 - squared in the pic) but also not available for version 1.20 Has anybody faced that issue? Can you guys help please?
  5. Hi, I have an ACTRONAIR at Home with Wireless Controller. I have done extensive research to understand how the AC is controlled. It turns out that the AC wireless controller get it's instruction from a Web Service in the cloud. I have intercepted the Web Service Call and this is what get passed on to the cloud: PUT https://actron.ninja.is/rest/v0/device/ACONNECTXXXXXXXXXXXX_0_2_5?user_access_token=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx HTTP/1.1 Accept: application/json Content-Type: application/json Referer: https://actronair.com.au/aconnect/ Accept-Language: en-AU,en;q=0.8,ar-LB;q=0.5,ar;q=0.3 Origin: https://actronair.com.au Accept-Encoding: gzip, deflate User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.79 Safari/537.36 Edge/14.14393 Host: actron.ninja.is Content-Length: 24 Connection: Keep-Alive {"DA":[0,1,1,0,0,0,0,0]} I need help with creating a Scene that sends instructions to the same cloud service. So far I tried the following without any sucess. Appreciate any guidance please! --[[ %% properties %% events %% globals --]] -- Callback at success local function successCallback(resp) fibaro:debug('connection success, status: ' .. resp.status) end -- Callback at error local function errorCallback(resp) fibaro:debug('connection no success, error: ' .. resp) end -- http-request Scene : senden über AutoRemote Tasker WiFi Service enabled in Tasker Action local function getDirect() local http = net.HTTPClient() payload = '"DA":[1,1,1,1,1,0,0,0]' fibaro:debug('this is the payload: ' .. payload .. '.') http:request('https://actron.ninja.is/rest/v0/device/ACONNECTXXXXXXXXXXX_0_2_4?user_access_token=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', { options = payload, success = successCallback, error = errorCallback } ) end -- Do the request getDirect()
  6. I want to try to operate my AC using the AC Panel... Shouldn't be hard right? The problem is that I'm using the Remotec to control the AC. In linked devices, it wont let me select anything but switches. My thought was to make a VD to control the AC unit. But no VD comes up in linked devices.... How does anyone control the AC using the AC Panel? This seems like a joke.
  7. Hi everyone, I need help... so if anybody can give me a hand I will be very grateful. I have following hardware: Home Center Lite, Remotec ZXT-120 and Air condition unit. I am able to control AC through Fibaro app, everything is OK with that. I can remotely turn AC ON, OFF and select heating and temperature. Challenge: The AC unit accepts only 16 degrees as minimun heating value. The cabin is only used time to time and mostly it is unoccupied and temperature inside should be only 5 degrees. When arriving to cabin temperature should be increased to 21 degrees through Fibaro app. How this could be solved with HCL ? I can make following scenes 1. a block scene which will turn up AC to heat when temperature in cabin is below 5 degrees. 2. second block scene 2 which will turn off AC from heating when temperature is 7 degrees. 3. third block scene which will turn up AC to heat 21 degrees. But the second scene will then turn off the third scene. (loop) I really need help with this one...
  8. hey, Does fibaro have a plugin of the cool master. at www.coolautomation.com they have mentioned that it works with fibaro. Basically i want a two communication with the AC. Using an IR blaster for now, it just allows me to give commands, but i cant figure out unless i am at the site if the command worked. Its an VRV AC of Diakin. Cool master works with other wired automation (KNX) platforms. Can any one please provide me with a solution?? or a driver for the cool master?? thanks
  9. Hello, I have a combined heating cooling system. I would like to use the heating and AC panels in HC2. The problem is that the same valves are used for both heating as cooling. When the outside temperature is below 22 degrees the system is in heating mode. So when a room temperature is below setpoint the valve is opened and hot water heats the room. When it is above the 22 degrees the system switches mode and cold water will flow through the valve to cool the room. My question is how will the two panels influence each other? Is it possible to completely disable all functionality of the AC panel when the heating is active and vice versa? greetings John.
  10. Hi, I am struggling to understand how the heating panel works together / or not with the AC panel. The setup is like this: In the same room there are: 2 Danfoss radiator valves LC13, 1 Room Thermostat Danfoss RS, AC controlled by a Remotec ZXT-120. During the winter I have "moved" the 4 Remotec icons to a dummy room as AC was starting on heating whenever the heating panel demanded to turn up the heat and I wanted to heat the room only using the radiators. Now it is getting warm outside and I will soon need to cool down the room. So what I did is I moved back the Remotec controls to the room, set the main temperature sensor the Danfoss RS, set up the AC panel and I hoped I will start to cool down the room by turning the AC on cooling. No dice... Radiator thermostats just followed the heating schedule and AC turned on heating. So I disabled the heating panel and left only the cooling panel. Still no dice, AC does not turn on cooling. So I guess my question is: how are these panels supposed to be set if I got all of the above devices in the same room but during winter I want to heat only with the radiators and during summer to cool with the AC? Thank you PS: or is there a bug and the Remotecs are integrated in the heating panel but not in the cooling panel ?! Would be great if someone from Fibaro could shed some light on this.
  11. Now that the weather is getting warm in this part of the world, I am trying to get the "AC Panel" configured, but I cannot get it to work. During winter, I configured the "Heating Panel" and it worked perfectly. So I followed the same steps to configure the "AC Panel": Create a Zone Add the room where the thermostat and temp sensor is Edit the schedule Save ...but the panel never changes the temperature in the thermostat at the expected times of the day, so it never triggers the air conditioning to turn ON. I also tried forcing the air conditioning to turn on by using the Holiday mode and the Manual mode, but nothing happens on the thermostat. However, I can manually set the temperature from the "Devices" screen on the HC2, and when I do it this way the thermostat receives the data and it turns on the air conditioner, so I know that the thermostat is configured properly, so either I am missing a step or the AC Panel is not working. Has anyone been able to get the AC Panel to work? My HC2 system is running version 4.082 My thermostat is Honeywell TH8320ZW
  12. Hi, i'm trying to create a block scene with my Remotec ZXT-120. I set some time schedules but i can't set temperature, mode and fan option into the device It's a bug? Regards
  13. I have a Panasonic Etherea AC unit funtioning with the Inthesishome box and this works perfectly with the Intesis native app over internet. Recently IntesisHome has launched their API (http://developer.intesishome.com) and that is great news for integrating this into the HC2. Is there someone who can help with: 1) explaning how an API from an external device can be reached best by the HC2: through lua scripting or php? 2) scripting php and/or lua code to setValue in the Intesis api? 3) setting up a plugin for this api (as the Intesis home box allows for controlling multiple brands of AC units)? Thanks.
  14. W końcu udało mi się uruchomić sterowanie klimatyzatorem przy użyciu ZXT-120EU Remotec. Klimatyzator z poza listy dostępnych kodów ZXT-120EU. Pracuje na parametrach: 27 2d 00 czyli na kodach nauczonych. Mój klimatyzator to AKAI. Nauczyłem urządzenie 6-ciu kodów oryginalnego pilota od klimatyzatora. Jakie było moje zdziwienie jak się uruchomił i pracował a następnie mogłem go wyłączyć. Jacek
×
×
  • Create New...