forked from tejabalu/OrateVR
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.py
169 lines (154 loc) · 4.75 KB
/
app.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
158
159
160
161
162
163
164
165
166
167
168
169
from dash import Dash
from dash import dcc
from dash import html
from dash.dependencies import Input, Output, State
app = Dash(
__name__,
meta_tags=[{"name": "viewport", "content": "width=device-width, initial-scale=1"}],
)
app.title = "Reality-Rewired Dashboard"
server = app.server
app_color = {"graph_bg": "#082255", "graph_line": "#007ACE"}
app.layout = html.Div(
[
html.Div(
[
html.Div(
[
html.H1("Reality-Rewired Dashboard", className="font-bold text-2xl"),
],
className="",
),
html.Div(
[
html.A(
html.Button("About", className=""),
href="https://plotly.com/get-demo/",
),
html.A(
html.Img(
src=app.get_asset_url(""),
className="",
),
href="https://plotly.com/dash/",
),
],
className="",
),
],
className="",
),
html.Div(
[
html.Div(
[
html.Div(
[html.H6("Heart Rate Sensor Readings", className="")]
),
dcc.Graph(
id="heart-rate",
figure=dict(
# layout=dict(
# plot_bgcolor=app_color[""],
# paper_bgcolor=app_color[""],
# )
),
),
dcc.Interval(
id="heart-rate-update",
interval=4000,
n_intervals=0,
),
],
className="",
),
html.Div(
[
html.Div(
[
html.Div(
[
html.H6(
"GSR Sensor Readings",
className="",
)
]
),
dcc.Graph(
id="gsr-reading-graph",
figure=dict(
layout=dict(
plot_bgcolor=app_color["graph_bg"],
paper_bgcolor=app_color["graph_bg"],
)
),
),
],
className="",
),
],
className="",
),
],
className="",
),
],
className="container mx-auto mt-4",
)
@app.callback(
Output("heart-rate", "figure"), [Input("heart-rate-update", "n_intervals")]
)
def gen_heart_rate(interval):
"""
Generate the wind speed graph.
:params interval: update the graph based on an interval
"""
from engine import export_dataframe
dfi = export_dataframe()
trace = dict(
type="scatter",
y=dfi["PPG"],
# y=[1,2,3,4,5],
hoverinfo="skip",
mode="lines",
)
layout = dict(
height=700,
xaxis={
"showline": True,
"zeroline": False,
"fixedrange": False,
"title": "Time Elapsed (sec)",
},
)
return dict(data=[trace], layout=layout)
@app.callback(
Output("gsr-reading-graph", "figure"),
[Input("heart-rate-update", "n_intervals")],
[
State("heart-rate", "figure"),
],
)
def gen_wind_histogram(a, b):
from engine import export_dataframe
dfi = export_dataframe()
trace = dict(
type="scatter",
y=dfi["GSR"],
mode="lines",
)
layout = dict(
height=700,
yaxis={
"range": [600,700],
},
xaxis={
"showline": True,
"zeroline": False,
"fixedrange": False,
"title": "Time Elapsed (sec)",
},
)
return dict(data=[trace], layout=layout)
if __name__ == "__main__":
app.run_server(debug=True)