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
52669176
Commit
52669176
authored
4 years ago
by
Your Name
Browse files
Options
Downloads
Patches
Plain Diff
added get/set pid scripts
parent
1affddc5
Branches
Branches containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
raspberry-dataserver/get_pid.py
+100
-0
100 additions, 0 deletions
raspberry-dataserver/get_pid.py
raspberry-dataserver/set_pid.py
+104
-0
104 additions, 0 deletions
raspberry-dataserver/set_pid.py
with
204 additions
and
0 deletions
raspberry-dataserver/get_pid.py
0 → 100755
+
100
−
0
View file @
52669176
#!/usr/bin/env python3
from
CommsLLI
import
CommsLLI
from
CommsCommon
import
*
import
asyncio
import
logging
logging
.
basicConfig
(
level
=
logging
.
INFO
,
format
=
'
%(asctime)s - %(levelname)s - %(message)s
'
)
from
serial.tools
import
list_ports
import
sys
import
time
import
binascii
def
getTTYPort
():
port_device
=
""
for
port
in
list_ports
.
comports
():
vidpid
=
""
if
port
.
pid
!=
None
and
port
.
vid
!=
None
:
vidpid
=
f
"
{
port
.
vid
:
04
x
}
:
{
port
.
pid
:
04
x
}
"
.
upper
()
print
(
vidpid
)
if
port
.
manufacturer
and
"
ARDUINO
"
in
port
.
manufacturer
.
upper
():
port_device
=
port
.
device
elif
vidpid
==
"
10C4:EA60
"
:
port_device
=
port
.
device
elif
len
(
sys
.
argv
)
>
1
:
port_device
=
sys
.
argv
[
1
]
return
port_device
fsm
=
''
class
Dependant
(
object
):
def
__init__
(
self
,
lli
):
self
.
_llipacket
=
None
self
.
_lli
=
lli
async
def
update_llipacket
(
self
):
while
True
:
payload
=
await
self
.
_lli
.
_payloadrecv
.
get
()
global
fsm
#logging.info(f"payload received: {payload}")
#if payload.getType() == PAYLOAD_TYPE.ALARM.value:
# logging.info(f"Alarm: {payload.alarm_code} of priority: {payload.alarm_type}")
if
payload
.
getType
()
==
PAYLOAD_TYPE
.
DATA
.
value
:
#logging.info(f"payload received: {payload}")
fsm
=
payload
.
fsm_state
if
payload
.
getType
()
==
PAYLOAD_TYPE
.
READBACK
.
value
:
logging
.
info
(
f
"
PID: kp
{
payload
.
kp
}
ki
{
payload
.
ki
}
kd
{
payload
.
kd
}
"
)
if
payload
.
getType
()
==
PAYLOAD_TYPE
.
TARGET
.
value
:
logging
.
info
(
f
"
GAIN:
{
payload
.
pid_gain
}
"
)
self
.
_llipacket
=
payload
.
getDict
()
# returns a dict
def
send_cmd
(
cmd_type
,
cmd_code
,
param
=
0.0
):
try
:
cmd
=
CommandFormat
(
cmd_type
=
CMD_TYPE
[
cmd_type
].
value
,
cmd_code
=
CMD_MAP
[
cmd_type
].
value
[
cmd_code
].
value
,
param
=
param
)
comms
.
writePayload
(
cmd
)
except
Exception
as
e
:
logging
.
critical
(
e
)
exit
(
1
)
else
:
return
cmd
def
send_personal
(
name
,
patient_id
,
age
,
sex
,
height
,
weight
):
try
:
cmd
=
PersonalFormat
(
name
=
name
.
encode
(),
patient_id
=
patient_id
.
encode
(),
age
=
int
(
age
),
sex
=
sex
.
encode
(),
height
=
int
(
height
),
weight
=
int
(
weight
))
logging
.
info
(
f
'
payload sent
{
cmd
}
'
)
comms
.
writePayload
(
cmd
)
except
Exception
as
e
:
logging
.
critical
(
e
)
exit
(
1
)
else
:
return
cmd
# initialise as start command, automatically executes toByteArray()
async
def
commsDebug
():
await
asyncio
.
sleep
(
1
)
while
True
:
await
asyncio
.
sleep
(
1
)
try
:
# setup serial device and init server
loop
=
asyncio
.
get_event_loop
()
comms
=
CommsLLI
(
loop
)
dep
=
Dependant
(
comms
)
deppoll
=
dep
.
update_llipacket
()
# create tasks
lli
=
comms
.
main
(
getTTYPort
(),
115200
)
debug
=
commsDebug
()
tasks
=
[
lli
,
debug
,
deppoll
]
# run tasks
asyncio
.
gather
(
*
tasks
,
return_exceptions
=
True
)
loop
.
run_forever
()
except
asyncio
.
CancelledError
:
pass
except
KeyboardInterrupt
:
logging
.
info
(
"
Closing LLI
"
)
finally
:
loop
.
close
()
This diff is collapsed.
Click to expand it.
raspberry-dataserver/set_pid.py
0 → 100755
+
104
−
0
View file @
52669176
#!/usr/bin/env python3
from
CommsLLI
import
CommsLLI
from
CommsCommon
import
*
import
asyncio
import
logging
logging
.
basicConfig
(
level
=
logging
.
INFO
,
format
=
'
%(asctime)s - %(levelname)s - %(message)s
'
)
from
serial.tools
import
list_ports
import
sys
import
time
import
binascii
def
getTTYPort
():
port_device
=
""
for
port
in
list_ports
.
comports
():
vidpid
=
""
if
port
.
pid
!=
None
and
port
.
vid
!=
None
:
vidpid
=
f
"
{
port
.
vid
:
04
x
}
:
{
port
.
pid
:
04
x
}
"
.
upper
()
print
(
vidpid
)
if
port
.
manufacturer
and
"
ARDUINO
"
in
port
.
manufacturer
.
upper
():
port_device
=
port
.
device
elif
vidpid
==
"
10C4:EA60
"
:
port_device
=
port
.
device
elif
len
(
sys
.
argv
)
>
1
:
port_device
=
sys
.
argv
[
1
]
return
port_device
fsm
=
''
class
Dependant
(
object
):
def
__init__
(
self
,
lli
):
self
.
_llipacket
=
None
self
.
_lli
=
lli
async
def
update_llipacket
(
self
):
while
True
:
payload
=
await
self
.
_lli
.
_payloadrecv
.
get
()
global
fsm
#logging.info(f"payload received: {payload}")
#if payload.getType() == PAYLOAD_TYPE.ALARM.value:
# logging.info(f"Alarm: {payload.alarm_code} of priority: {payload.alarm_type}")
if
payload
.
getType
()
==
PAYLOAD_TYPE
.
DATA
.
value
:
#logging.info(f"payload received: {payload}")
fsm
=
payload
.
fsm_state
if
payload
.
getType
()
==
PAYLOAD_TYPE
.
READBACK
.
value
:
logging
.
info
(
f
"
PID: kp
{
payload
.
kp
}
ki
{
payload
.
ki
}
kd
{
payload
.
kd
}
"
)
if
payload
.
getType
()
==
PAYLOAD_TYPE
.
TARGET
.
value
:
logging
.
info
(
f
"
GAIN:
{
payload
.
pid_gain
}
"
)
self
.
_llipacket
=
payload
.
getDict
()
# returns a dict
def
send_cmd
(
cmd_type
,
cmd_code
,
param
=
0.0
):
try
:
cmd
=
CommandFormat
(
cmd_type
=
CMD_TYPE
[
cmd_type
].
value
,
cmd_code
=
CMD_MAP
[
cmd_type
].
value
[
cmd_code
].
value
,
param
=
param
)
comms
.
writePayload
(
cmd
)
except
Exception
as
e
:
logging
.
critical
(
e
)
exit
(
1
)
else
:
return
cmd
def
send_personal
(
name
,
patient_id
,
age
,
sex
,
height
,
weight
):
try
:
cmd
=
PersonalFormat
(
name
=
name
.
encode
(),
patient_id
=
patient_id
.
encode
(),
age
=
int
(
age
),
sex
=
sex
.
encode
(),
height
=
int
(
height
),
weight
=
int
(
weight
))
logging
.
info
(
f
'
payload sent
{
cmd
}
'
)
comms
.
writePayload
(
cmd
)
except
Exception
as
e
:
logging
.
critical
(
e
)
exit
(
1
)
else
:
return
cmd
# initialise as start command, automatically executes toByteArray()
async
def
commsDebug
():
await
asyncio
.
sleep
(
1
)
send_cmd
(
cmd_type
=
"
SET_PID
"
,
cmd_code
=
"
KP
"
,
param
=
0.001
)
send_cmd
(
cmd_type
=
"
SET_PID
"
,
cmd_code
=
"
KI
"
,
param
=
0.0005
)
send_cmd
(
cmd_type
=
"
SET_PID
"
,
cmd_code
=
"
KD
"
,
param
=
0.001
)
send_cmd
(
cmd_type
=
"
SET_TARGET_CURRENT
"
,
cmd_code
=
"
PID_GAIN
"
,
param
=
2.
)
while
True
:
await
asyncio
.
sleep
(
1
)
try
:
# setup serial device and init server
loop
=
asyncio
.
get_event_loop
()
comms
=
CommsLLI
(
loop
)
dep
=
Dependant
(
comms
)
deppoll
=
dep
.
update_llipacket
()
# create tasks
lli
=
comms
.
main
(
getTTYPort
(),
115200
)
debug
=
commsDebug
()
tasks
=
[
lli
,
debug
,
deppoll
]
# run tasks
asyncio
.
gather
(
*
tasks
,
return_exceptions
=
True
)
loop
.
run_forever
()
except
asyncio
.
CancelledError
:
pass
except
KeyboardInterrupt
:
logging
.
info
(
"
Closing LLI
"
)
finally
:
loop
.
close
()
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