Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
HEV - High Energy Ventilator
Manage
Activity
Members
Labels
Plan
Issues
5
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Projects
HEV - High Energy Ventilator
Commits
381b57de
Commit
381b57de
authored
4 years ago
by
adam-abed-abud
Browse files
Options
Downloads
Patches
Plain Diff
Fix for state/version and send commands
parent
8ddf8e2f
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
raspberry-backend/app.py
+3
-3
3 additions, 3 deletions
raspberry-backend/app.py
raspberry-backend/arduino_recorder.py
+3
-3
3 additions, 3 deletions
raspberry-backend/arduino_recorder.py
raspberry-dataserver/svpi.py
+3
-0
3 additions, 0 deletions
raspberry-dataserver/svpi.py
with
9 additions
and
6 deletions
raspberry-backend/app.py
+
3
−
3
View file @
381b57de
...
...
@@ -51,11 +51,11 @@ def send_cmd():
"""
web_form
=
request
.
form
if
web_form
.
get
(
'
start
'
)
==
"
START
"
:
print
(
"
-----------------------------
"
)
print
(
hevclient
.
send_cmd
(
"
CMD_START
"
)
)
elif
web_form
.
get
(
'
stop
'
)
==
"
STOP
"
:
print
(
"
==============================
"
)
print
(
hevclient
.
send_cmd
(
"
CMD_STOP
"
)
)
elif
web_form
.
get
(
'
reset
'
)
==
"
RESET
"
:
print
(
"
******************************
"
)
print
(
hevclient
.
send_cmd
(
"
CMD_RESET
"
))
return
render_template
(
'
index.html
'
,
result
=
live_data
())
...
...
This diff is collapsed.
Click to expand it.
raspberry-backend/arduino_recorder.py
+
3
−
3
View file @
381b57de
...
...
@@ -79,7 +79,7 @@ def monitoring(source_address):
# Instantiating the client
hevclient
=
HEVClient
()
#
print(hevclient.send_cmd("CMD_START"))
print
(
hevclient
.
send_cmd
(
"
CMD_START
"
))
epoch
=
datetime
(
1970
,
1
,
1
)
...
...
@@ -107,9 +107,9 @@ def monitoring(source_address):
'
time
'
:
timestamp
,
'
alarms
'
:
data_alarms
,
'
temperature
'
:
1
,
'
version
'
:
1
,
'
version
'
:
data_receiver
[
"
version
"
]
,
'
pressure
'
:
1
,
'
fsm_state
'
:
data_receiver
[
"
version
"
],
'
fsm_state
'
:
data_receiver
[
"
fsm_state
"
],
'
pressure_air_supply
'
:
data_receiver
[
"
pressure_air_supply
"
],
'
pressure_air_regulated
'
:
data_receiver
[
"
pressure_air_regulated
"
],
'
pressure_o2_supply
'
:
data_receiver
[
"
pressure_o2_supply
"
],
...
...
This diff is collapsed.
Click to expand it.
raspberry-dataserver/svpi.py
+
3
−
0
View file @
381b57de
...
...
@@ -104,6 +104,9 @@ class svpi():
# peek at the leftmost item, don't pop until receipt confirmed
callback
(
self
.
_payloadrecv
[
0
])
def
writePayload
(
self
,
payload
):
logging
.
info
(
payload
)
def
bind_to
(
self
,
callback
):
self
.
_observers
.
append
(
callback
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment