Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/jnimmo/pyIntesisHome
Browse files Browse the repository at this point in the history
  • Loading branch information
jnimmo committed Mar 20, 2021
2 parents 406b380 + 29c228f commit b8e3111
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion pyintesishome/pyintesishome.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@

DEVICE_INTESISHOME = "IntesisHome"
DEVICE_AIRCONWITHME = "airconwithme"
DEVICE_ANYWAIR = "anywair"

API_DISCONNECTED = "Disconnected"
API_CONNECTING = "Connecting"
Expand Down Expand Up @@ -321,10 +322,15 @@

API_URL = {
DEVICE_AIRCONWITHME: "https://user.airconwithme.com/api.php/get/control",
DEVICE_ANYWAIR: "https://anywair.intesishome.com/api.php/get/control",
DEVICE_INTESISHOME: "https://user.intesishome.com/api.php/get/control",
}

API_VER = {DEVICE_AIRCONWITHME: "1.6.2", DEVICE_INTESISHOME: "1.8.5"}
API_VER = {
DEVICE_AIRCONWITHME: "1.6.2",
DEVICE_ANYWAIR: "2.9",
DEVICE_INTESISHOME: "1.2.2"
}


class IHConnectionError(Exception):
Expand Down

0 comments on commit b8e3111

Please sign in to comment.