Advertisement
Guest User

Actron air conditioning ifttt

a guest
Jun 17th, 2018
717
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. Yeah sure –
  2.  
  3. Locate your key:
  4. I used Chrome inspect tool. (crtl shft i) . In the top menu bar go over to Network. Navigate your browser to https://actronair.com.au/aconnect/#/Control and then click on the power button to start your A/C. Have a look at what data flows through. Look at the last item and it should look something like this – (I removed my actual key details):
  5.  
  6. https://actron.ninja.is/rest/v0/device/ACONNECTXXXXX_your_info_XXXXXXXX?
  7.  
  8. IFTTT:
  9. Create new applet, “if this” comes from a google assistant – setup what ever trigger sentence you want. The “then this” type in webhooks to bring up the webhooks service.
  10.  
  11. Webhooks setup:
  12. URL: https://actron.ninja.is/rest/v0/device/ACONNECTXXXXX_your_info_XXXXXXXX?user_access_token=xxxxxxxxxxxxxxxxxxx_your token_xxxxxxxxxxxxxxxx
  13. Method: PUT
  14. Content type: application/JSON
  15. Body: { “DA”:{“amOn”:true} }
  16.  
  17. Above applet will only tell your unit to power up, whatever temp/zones you had previously will remain. Add/create a new applet changing the Body section of the webhook if you want to control more. eg.. { “DA”:[0,0,1,1,0,0,0,0] } will open zones 3 and 4 for my system…
  18.  
  19. Cheers
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement