-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
157 lines (138 loc) · 5.24 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
#!/usr/bin/env python3
"""
myplace translation for the plugin https://github.com/phenotypic/homebridge-web-thermostat
"""
__author__ = "Jase Smith"
__version__ = "0.1.2"
__license__ = "MIT"
import os
import json
import requests
import time
from flask import Flask, jsonify, request
from flask_cors import CORS
with open("config.json") as json_data_file:
cfgdata = json.load(json_data_file)
myPlaceUrl = "http://" + cfgdata['ac_address'] + ":" + str(cfgdata['ac_port'])
myPlaceData = []
myPlaceDataExpiry = 0.0
def updateMyPlaceData():
global myPlaceDataExpiry
global myPlaceData
if myPlaceDataExpiry < time.time():
myPlaceData = (requests.get(url = myPlaceUrl + "/getSystemData")).json()['aircons']['ac1']
myPlaceDataExpiry = time.time() + 1
def create_app(config=None):
app = Flask(__name__)
# See http://flask.pocoo.org/docs/latest/config
#app.config.update(dict(DEBUG=True))
app.config.update(config or {})
# Setup cors headers to allow all domains
# https://flask-cors.readthedocs.io/en/latest/
CORS(app)
# Definition of the routes. Put them into their own file. See also
# Flask Blueprints: http://flask.pocoo.org/docs/latest/blueprints
@app.route("/")
def hello_world():
return "Hello World"
@app.route("/zone/<ACZone>/status")
def ACZoneStatus(ACZone):
updateMyPlaceData()
target = int(myPlaceData['zones']['z0' + ACZone ]['setTemp'])
current = myPlaceData['zones']['z0'+ ACZone ]['measuredTemp']
match myPlaceData['info']['fan']:
case "auto":
fan = 5
case "high":
fan = 4
case "medium":
fan = 3
case "low":
fan = 2
case _:
fan = 0
if myPlaceData['info']['state'] == 'on' and myPlaceData['zones']['z0'+ ACZone ]['state'] == "open":
match myPlaceData['info']['mode']:
case "heat":
state = 1
case "cool":
state = 2
case "vent":
state = 3
case _:
state = 3
else:
state = 0
results = {
"targetHeatingCoolingState": state,
"targetTemperature": target,
"currentHeatingCoolingState": state,
"currentTemperature": current,
"fanSpeed": fan,
"validStates": 3
}
print(results)
return json.dumps(results)
@app.route("/zone/<ACZone>/targetHeatingCoolingState")
def ACZoneSetState(ACZone):
ACValue = request.args.get('value', default = 0, type = int)
urlString = myPlaceUrl + '/setAircon?json='
match ACValue:
case 3:
urlString += '{"ac1":{"info":{"state":"on","mode":"vent","freshAirStatus":"on"},"zones":{"z0' + ACZone + '":{"state":"open"}}}}'
case 2:
urlString += '{"ac1":{"info":{"state":"on","mode":"cool","freshAirStatus":"off"},"zones":{"z0' + ACZone + '":{"state":"open"}}}}'
case 1:
urlString += '{"ac1":{"info":{"state":"on","mode":"heat","freshAirStatus":"off"},"zones":{"z0' + ACZone + '":{"state":"open"}}}}'
case _:
#is this the MyZone? if so run through until next open zone found and set that to myZone
if myPlaceData['info']['myZone'] == int(ACZone):
for nextMyZone in range(1, (myPlaceData['info']['noOfZones']) + 1):
if myPlaceData['zones']['z0'+ str(nextMyZone) ]['state'] == "open" and nextMyZone != int(ACZone):
print(f"{nextMyZone} is turned on and isn't the current MyZone")
requests.get(url = (urlString + '{"ac1":{"info":{"myZone":' + str(nextMyZone) + '}}}'))
break
urlString += '{"ac1":{"zones":{"z0' + ACZone + '":{"state":"close"}}}}'
requests.get(url = urlString)
print(urlString)
return "ok"
@app.route("/zone/<ACZone>/targetTemperature")
def ACZoneSetTemp(ACZone):
ACValue = request.args.get('value', default = 24.0, type = float)
urlString = myPlaceUrl + '/setAircon?json={"ac1":{"zones":{"z0' + ACZone + '":{"setTemp":' + str(ACValue) + '}}}}'
requests.get(url = urlString)
print(urlString)
return "ok"
@app.route("/fresh/status")
def ACFreshStatus():
if myPlaceData['info']['freshAirStatus'] == "on":
return "1"
else:
return "0"
@app.route("/fresh/set/<ACValue>")
def ACFreshSet(ACValue):
if ACValue > 0:
urlString = myPlaceUrl + 'setAircon?json={"ac1":{"info":{"freshAirStatus":"on"}}}'
else:
urlString = myPlaceUrl + 'setAircon?json={"ac1":{"info":{"freshAirStatus":"off"}}}'
requests.get(url = urlString)
return "ok"
@app.route("/system/status")
def ACSystemStatus():
if myPlaceData['info']['state'] == "on":
return "1"
else:
return "0"
@app.route("/system/set/<ACValue>")
def ACSystemSet(ACValue):
if ACValue > 0:
urlString = myPlaceUrl + 'setAircon?json={"ac1":{"info":{"state":"on"}}}'
else:
urlString = myPlaceUrl + 'setAircon?json={"ac1":{"info":{"state":"off"}}}'
requests.get(url = urlString)
return "ok"
return app
if __name__ == "__main__":
port = int(os.environ.get("PORT", 8000))
app = create_app()
app.run(host="0.0.0.0", port=port)