I have one of these - LG A/C Portable Air Conditioner and one of the broadlink ir blasters which will control it just fine.
One note - the IR remote control power button turns on AND off the A/C unit - there are not separate buttonson the remote. So the code I send with the IR blaster is the same each time - just sending it once will turn the A/C on or off depending on which state the A/C unit is in currently.
I’m using this unit to keep a small playroom cool on a second floor of our home. Right now it has been running 24/7 because I can’t figure out to automate it reliably. The thermostat on it works perfectly fine - but it runs a fan etc 24/7 even when not cooling the room, which is not only a waste of electricity, but noisy as well.
Here’s the automation I had setup -
- alias: "Turn On A/C In Playoom"
trigger:
- platform: state
entity_id: sensor.playroom_temperature
condition:
condition: template
value_template: '{{ (states("sensor.playroom_temperature") | float) >= 75 | float }}'
action:
<send IR code>
- alias: "Turn Off A/C In Playoom"
trigger:
- platform: state
entity_id: sensor.playroom_temperature
condition:
condition: template
value_template: '{{ (states("sensor.playroom_temperature") | float) <= 74 | float }}'
action:
<send IR code>
I can send the IR code fine - but the code acts like it loops - as in seemed like it would check every so many seconds - realize the temp was too high and send the code to turn on, which in turn would shut off the A/C because of the nature of the power button I explained above. So it was like a constant off/on cycle. The sensor I’m using for temp is an extra Ecobee remote unit I have for my Ecobee 3.
Any ideas/thoughts?