-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.py
More file actions
77 lines (59 loc) · 2.67 KB
/
app.py
File metadata and controls
77 lines (59 loc) · 2.67 KB
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
from flask import Flask, render_template, request, jsonify, Response
from flask_bootstrap import Bootstrap
from flask_sqlalchemy import SQLAlchemy
from datetime import datetime
import json
import plotly
import requests
from device_core import Camera, Sensor
from models import init_db, Device
from device_routes import SENSORS, CAMERAS, LIGHTING_DATA
from config import Config
from flask import Flask, render_template, jsonify
from device_blueprints import sensor_blueprint, camera_blueprint
app = Flask(__name__)
app.config.from_object(Config)
Bootstrap(app)
init_db(app)
# from main import app, db, Device
# app.app_context().push()
# db.create_all()
app.register_blueprint(sensor_blueprint, url_prefix='/sensors')
app.register_blueprint(camera_blueprint, url_prefix='/cameras')
# ---------------------------------------------------------------------------------------------
@app.route('/')
def home():
# Filter sensors based on their types
thermo = [sensor for sensor in SENSORS if sensor.id.startswith('t')]
ele = [sensor for sensor in SENSORS if sensor.id.startswith('e')]
# Render the index template with the plot data and sensor lists
return render_template('index.html', thermo=thermo, ele=ele, cameras=CAMERAS)
@app.route('/lighting-data/', methods=['POST', 'GET'])
def receive_data():
global LIGHTING_DATA
print(LIGHTING_DATA)
try:
if request.method == 'POST':
address_value = request.json.get('address')
intensity_value = request.json.get('value')
if intensity_value is None:
return jsonify({"error": "Value not provided"}), 400
if address_value is None:
return jsonify({"error": "Address not provided"}), 400
address_value = int(address_value)
LIGHTING_DATA[address_value] = intensity_value
response = requests.post(f"http://127.0.0.1:1880/", json={"daliData_flask":[address_value, intensity_value]}, timeout=1)
response.raise_for_status()
return jsonify({"address": address_value, "value": intensity_value}), 200
elif request.method == 'GET':
address_value = request.args.get('address')
if not address_value:
return jsonify({"error": "Address not provided"}), 400
address_value = int(address_value)
intensity_value = LIGHTING_DATA.get(address_value, 0)
return jsonify({"address": address_value, "value": intensity_value}), 200
except requests.RequestException as e:
print("debug")
return jsonify({"error": str(e)}), 500
if __name__ == '__main__':
app.run(host='0.0.0.0', port=5000, debug=True)