Controlling A/C remotely (what to use?)

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Dannyx
    CertifiedAxhole
    • Aug 2016
    • 3912
    • Romania

    #1

    Controlling A/C remotely (what to use?)

    Good day folks. Summer being in full swing, I thought I'd automate my home a bit and come up with a way of putting the air con on even before I arrive home. It does have a time delay feature that goes up to 2h, so you can set it to turn on/off after 2h, but that's the maximum range you get, so if I'm gone for more than 2h, it's a waste of energy if comes on and cools nothing, plus once it IS on, you have no way of telling it to turn off again so it just keeps on going.
    Of course there are probably many projects out there describing what I want, but trying to keep the component count and budget to a minimum, I'm not sure what I should use exactly. I have an Arduino Mega on hand, but from what I understand that's not enough. Not counting its obvious lack of any network features without a shield, I learned it's not fast enough to handle both the remote codes and the network environment at the same time. Most home automation projects seem to revolve around the Raspberry pi of some sort and I was thinking of getting one of those and giving it a crack, despite not having worked with one ever before.

    I DID see them in action and had a brief look into it when my workmate automated the lights in his house and even designed some sort of remote desktop client/server thingy with one (to this day I'm not sure what all that mess was trying to achieve that a PC couldn't, but anyway). He tried "luring" me into all this home-automation business, but I didn't really play along since I regard it as a waste of time and especially money, especially for small apartments (why would you need to turn a light on if you're not at home?), but the A/C is one thing you WOULD want to control remotely and I'd like such feature, so perhaps it will be a good learning experience after all. What do you guys think ? Any thoughts or good resources on this ? What should I look into ? Hell, maybe someone's already done this and can provide some direct feedback. Cheers and thanks.
    Wattevah...
  • stj
    Great Sage 齊天大聖
    • Dec 2009
    • 30977
    • Albion

    #2
    Re: Controlling A/C remotely (what to use?)

    connect a microcontroller between your router and a solid-state relay.
    then control shit from a browser!!
    http://tuxgraphics.org/electronics/

    Comment

    • Dannyx
      CertifiedAxhole
      • Aug 2016
      • 3912
      • Romania

      #3
      Re: Controlling A/C remotely (what to use?)

      Hmmm...not quite. Plugging the thing in is not enough: it's got a soft-on feature so it wouldn't start anyhow and to be more specific, I want to emulate the functions on the remote...this chap got the right idea...
      Wattevah...

      Comment

      • stj
        Great Sage 齊天大聖
        • Dec 2009
        • 30977
        • Albion

        #4
        Re: Controlling A/C remotely (what to use?)

        well the schematics and code are there for 2 way stuff.
        you could control stuff and see the temps or whatever.

        Comment

        • desert-rat
          Badcaps Legend
          • Mar 2014
          • 4103
          • USA

          #5
          Re: Controlling A/C remotely (what to use?)

          I don't know if this will do what you want but you can get programmable thermostats.

          Comment

          • eccerr0r
            Solder Sloth
            • Nov 2012
            • 8694
            • USA

            #6
            Re: Controlling A/C remotely (what to use?)

            well, I think the OP is using a window unit of sorts and not a central HVAC system, so most likely some hacking or complete system replacement is needed -- sounds like the former is most likely.

            If the remote emulation doesn't work, it's time to take apart the front panel and add electronics to "press" the button(s)...

            Comment

            • Dannyx
              CertifiedAxhole
              • Aug 2016
              • 3912
              • Romania

              #7
              Re: Controlling A/C remotely (what to use?)

              Originally posted by eccerr0r
              well, I think the OP is using a window unit of sorts and not a central HVAC system
              Partly correct: mobile air con unit, the type you wheel around. It's a Vortex in case it matters. I added some pics of both the entire thing plus the remote, in case someone goes "oh, I know this remote, it's the same thing as X", since I'm sure it's generic and used by many different brands....smiley face on there too
              Originally posted by eccerr0r
              If the remote emulation doesn't work, it's time to take apart the front panel and add electronics to "press" the button(s)...
              Pretty tough getting in there, plus not all functions on the remote have correspondents on the unit itself. IR is the way to go in this case.
              I looked into it some more and apparently A/C remotes send all of the parameters shown on the remote screen at the same time: temperature, fan speed, swing on/off, so I'd have to capture all the different possible combinations, starting from the lowest temperature and working my way up to the highest, so 16c, low, swing on / 16c, med, swing on / 16c, high, swing on, etc. I was then thinking of a user interface where you have like a drop-down menu for the temperatures and radio buttons to select parameters like fan speed and swing (these 3 are the only ones I require really) and then a "send" button to send that combination via the raspberry or whatever micro I'll be using.....sure, sounds easy, but for someone who's never designed something like this in practice, it's a challenge.
              Temperature ranges from 16c to 32c, so 16 combinations right there
              Speed ranges from low to med to high, so 3 more there
              Swing is on/off, so an extra 2....add every single possible combination of these up and we get, by my calculations, so correct me if I'm wrong, 102 possible combinations...I compiled a chart of how it should look...I'm sure you get the idea.
              Attached Files
              Last edited by Dannyx; 06-17-2018, 11:52 AM.
              Wattevah...

              Comment

              • eccerr0r
                Solder Sloth
                • Nov 2012
                • 8694
                • USA

                #8
                Re: Controlling A/C remotely (what to use?)

                Yeah, people tend to just record the remote and playback to remote control it. (the RF ones are another story!) Seems that the remote has some peculiarities in it, most remotes are dumb and just send codes as they're pressed but this one seems to have some sort of local state... Looks like a bit more complicated rev engineering job there!

                Comment

                • Dannyx
                  CertifiedAxhole
                  • Aug 2016
                  • 3912
                  • Romania

                  #9
                  Re: Controlling A/C remotely (what to use?)

                  One thing I noted is that if the remote is already "on" (but the unit is off, if I press the power button while in another room or blocking the LED), if I THEN adjust any parameter whilst now pointing it at the unit, it will come on with those parameters despite not having actually pressed the "ON" button.

                  For example, if the remote shows 16, low, swing on and I press the "up" button to go up one step to 17C, the A/C will turn on at 17c, low fan speed, swing on, as the "on" command is carried as well, so all those values would also have the "power on" command associated with them in my chart, since OFF would be a separate one entirely with no other value. Just thought I point this out as an extra detail...the only way to find out is to actually go for it and see if it works...I'll probably borrow my mate's pi to try it...
                  Wattevah...

                  Comment

                  • brethin
                    Badcaps Legend
                    • Dec 2008
                    • 1907
                    • USA

                    #10
                    Re: Controlling A/C remotely (what to use?)

                    I have central air but got a window unit for my computer room, it came with wifi, LG unit,. Works great.

                    Comment

                    • petehall347
                      Badcaps Legend
                      • Jan 2015
                      • 4426
                      • United Kingdom

                      #11
                      Re: Controlling A/C remotely (what to use?)

                      build a phone app or just buy one

                      Comment

                      • redwire
                        Badcaps Legend
                        • Dec 2010
                        • 3902
                        • Canada

                        #12
                        Re: Controlling A/C remotely (what to use?)

                        I'd use an ESP8266 for it, it's got WiFi and there are IR remote TX/RX libraries for it.

                        You could program it to show a webpage, which them sends IR LED blips to the A/C unit.

                        Comment

                        • Dannyx
                          CertifiedAxhole
                          • Aug 2016
                          • 3912
                          • Romania

                          #13
                          Re: Controlling A/C remotely (what to use?)

                          That's basically what I want, but I thought about the Pi because it seems like it's got more potential in the long run if I ever get bored and want to move on to another project.
                          In favour of the ESP, I reckon it's cheaper and can be "embedded" in the final project, instead of having to sacrifice the Pi and dedicate it to JUST sitting in front of the A/C.
                          Wattevah...

                          Comment

                          • Curious.George
                            Badcaps Legend
                            • Nov 2011
                            • 2305
                            • Unknown

                            #14
                            Re: Controlling A/C remotely (what to use?)

                            Originally posted by desert-rat
                            I don't know if this will do what you want but you can get programmable thermostats.
                            Or, a $10 appliance timer that applies power to a small resistive HEATING load placed near the sensing element (of a wall mounted thermostat, window unit, shop unit, etc. -- a "universal" solution )

                            Comment

                            • eccerr0r
                              Solder Sloth
                              • Nov 2012
                              • 8694
                              • USA

                              #15
                              Re: Controlling A/C remotely (what to use?)

                              Problem being, that likely the desire is to keep the AC turned off when there are no occupants. When an AC is being used, this is most likely be used during the summer, and to keep the AC off, that sensing element needs to be kept cool.

                              Now to keep that sensor cool we'd need some really funky device. A peltier? An empty NiCd battery being charged? Negative resistance heater? Oh boy... pretty messed up...

                              It does give another possibility however, perhaps another way is to use a relay to switch in the sensor or some other dummy circuit that keeps the AC off. Either way, looks like some surgery is needed, and hopefully we know how to fake that sensor. Needing to fake an i2c sensor may complicate things...

                              Comment

                              • Dannyx
                                CertifiedAxhole
                                • Aug 2016
                                • 3912
                                • Romania

                                #16
                                Re: Controlling A/C remotely (what to use?)

                                Nope - all of that is too complicated. The A/C is not permanently installed as you can see and it's not a HVAC system employing a thermostat, so the only method here is the remote. I found a project (can't remember if I linked to it here) using an ESP that does just this...the only problem is adapting it to fit my unit. That one was for a Daikin I reckon...
                                Wattevah...

                                Comment

                                • Andyy
                                  Member
                                  • Aug 2016
                                  • 28
                                  • Australia

                                  #17
                                  Re: Controlling A/C remotely (what to use?)

                                  Originally posted by Dannyx
                                  Most home automation projects seem to revolve around the Raspberry pi of some sort and I was thinking of getting one of those and giving it a crack, despite not having worked with one ever before.
                                  Even without a RPi, you should be able to use your PC to record and playback remote codes. Once you've verified this works with your A/C, you can copy the remote codes into the RPi's software.

                                  Comment

                                  • Dannyx
                                    CertifiedAxhole
                                    • Aug 2016
                                    • 3912
                                    • Romania

                                    #18
                                    Re: Controlling A/C remotely (what to use?)

                                    Originally posted by Andyy
                                    Even without a RPi, you should be able to use your PC to record and playback remote codes.
                                    How would one go about doing that ?
                                    Wattevah...

                                    Comment

                                    • stj
                                      Great Sage 齊天大聖
                                      • Dec 2009
                                      • 30977
                                      • Albion

                                      #19
                                      Re: Controlling A/C remotely (what to use?)

                                      LIRC project.

                                      Comment

                                      • Dannyx
                                        CertifiedAxhole
                                        • Aug 2016
                                        • 3912
                                        • Romania

                                        #20
                                        Re: Controlling A/C remotely (what to use?)

                                        Ah yes I remember that...something to do with Linux I reckon...
                                        Wattevah...

                                        Comment

                                        Related Topics

                                        Collapse

                                        • Capacitorial
                                          Good beginner repair projects?
                                          by Capacitorial
                                          Hello!
                                          I learned a lot the last weeks about repairing and how power supplies are structured. Fixed two TVs (even though it wasnt really hard since one was a backlight and the other a ribbon tape trick fix).
                                          Let's say I got a basis of knowledge from where I can start to repair easy projects.

                                          Looking on local online markets, there are sometimes faulty devices for free. But where to start?

                                          I try to stay away from notebooks and mobile devices. I don't believe I got the experience, even though it feels like I could do something, after watching hours of notebook...
                                          01-10-2024, 06:51 AM
                                        • Catisfaction
                                          Canon TS8350a waste inc container reset
                                          by Catisfaction
                                          Hi all,
                                          since my second device of this model number now died due to Canon being service unfriendly, I'd like to reset the counter myself.
                                          This model of printer seems to be on non of the eBay sellers and other suppliers support lists for the Canon Service Tool. Other forums suggested the v5103 version of the tool, which did not work unfortunately.
                                          Has anyone maybe experience with this exact model?
                                          Thank you!
                                          07-02-2025, 07:46 AM
                                        • sam_sam_sam
                                          Alexia thermostat is this a good idea for for controlling your air conditioning system feedback wanted
                                          by sam_sam_sam
                                          My wife is asking me about getting one because our electric bill was that it has ever been even more than last year at this time nothing has really changed since last year last month unless the electric company has done some fuel adjustment charges I have not done any investigation into yet but I might have to but there was a time back a few years ago that I use to set the temperature warm during the day when we were not home but when we got wooden floors in our house and you have to keep the humidity down to keep it from warping I just set to a temperature to 75*F to keep the humidity down but...
                                          06-22-2025, 10:23 AM
                                        • dark41
                                          canon mg2555s waste ink counter error need dump
                                          by dark41
                                          Hi Anyone has dump from working canon mg2555s i got error 5B00
                                          I would like to try flash eeprom witch ch341a
                                          09-14-2024, 04:25 AM
                                        • CapLeaker
                                          Security camera linking remotely to NVR
                                          by CapLeaker
                                          I've got already a 16 port NVR installed at a certain location. The building owner wants to add 4 IP cameras on a different building 500m away from the main building.
                                          My way going about is to install the cameras on the off site building, connect them to a 8 port POE switch, install a wifi bridge and plug that into that POE switch too. That should do the remote side. Easy.

                                          The main building should have the other end of the wifi bridge.

                                          Did any one try to hook a wifi bridge staight up to the NVR's camera POE port?
                                          I do know that usually the wifi bridge is hooked...
                                          12-24-2023, 02:54 PM
                                        • Loading...
                                        • No more items.
                                        Working...