Sensibo Aircon IP/IR bridge

Hi again all,

I have a sensibo IP to IR bridge attached to my split system aircon. It has an app that allows to remote control my aircon - I know it has IFTTT hooks and was wondering if any one has also used sensibo in HA.

All I have setup is a couple of scripts that call IFTTT Sensibo via Maker channel to turn my AC on and off. I’m trying to find out if there is a way to call the scripts from a SWITCH. I’m quite new to HA so still trying to get my head around.

feel like sharing your maker triggers?

Very simple. I’ve setup a couple of web requests (aircon_on and aircon_off) with Maker that would call A/C on and A/C off from Sensibo channel.


Then I setup a couple of scripts in HA to call them. Not pretty but it works. Below is one of my script from HA.

alias: ‘Aircon on’
sequence:

  • service: ifttt.trigger
    data:
    event: aircon_on

Sorry I’m not sure how to make spaces show up here. Please let me know if you’re unclear.

funny enough - same as mine - yours works mine doesnt:

script:
ifttt:
alias: “Aircon On 18c Fan High”
sequence:
- service: ifttt.trigger
data:
event: aircon_on

turns out - it does work… just hours delayed…

That’s exactly happening to me right now as well. It was working fine when I set it up but now it takes one or two hours to actually trigger. Not sure why. Still instant from the app or IFTTT Do buttons.

I started using the curl / shell terminal command that Ifft maker channel also shows and it works immediately. Suggest that.

Would you mind sharing how’s done?

Happy to. I’m away from home for another three days. When I’m home I’ll paste in. [quote=“ducky, post:9, topic:9838, full:true”]
Would you mind sharing how’s done?
[/quote]

try this:

shell_command:
aircon_on: curl -X POST https://maker.ifttt.com/trigger/aircon_on/with/key/PRIVATEKEY_GET_YOUROWN
aircon_off: curl -X POST https://maker.ifttt.com/trigger/aircon_off/with/key/PRIVATEKEY_GET_YOUROWN

Hi Wade85, Does yours still work? I’m now getting the same symptom as the scripts with delay hours to trigger the maker requests.