Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
firmware
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
card10
firmware
Commits
11d2b50b
Commit
11d2b50b
authored
5 years ago
by
fuchsi*
Committed by
rahix
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
feat(ecg-app): Add high-pass filter and pulse detection
parent
c1ef8df5
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
preload/apps/ecg/__init__.py
+89
-10
89 additions, 10 deletions
preload/apps/ecg/__init__.py
with
89 additions
and
10 deletions
preload/apps/ecg/__init__.py
+
89
−
10
View file @
11d2b50b
...
@@ -41,16 +41,83 @@ leds.dim_top(1)
...
@@ -41,16 +41,83 @@ leds.dim_top(1)
COLORS
=
[((
23
+
(
15
*
i
))
%
360
,
1.0
,
1.0
)
for
i
in
range
(
11
)]
COLORS
=
[((
23
+
(
15
*
i
))
%
360
,
1.0
,
1.0
)
for
i
in
range
(
11
)]
# variables for high-pass filter
moving_average
=
0
alpha
=
2
beta
=
3
def
update_history
(
datasets
):
global
history
,
moving_average
,
alpha
,
beta
for
val
in
datasets
:
history
.
append
(
val
-
moving_average
)
moving_average
=
(
alpha
*
moving_average
+
beta
*
val
)
/
(
alpha
+
beta
)
# trim old elements
history
=
history
[
-
HISTORY_MAX
:]
# variables for pulse detection
pulse
=
-
1
samples_since_last_pulse
=
0
q_threshold
=
-
1
r_threshold
=
1
q_spike
=
-
ECG_RATE
def
neighbours
(
n
,
lst
):
"""
neighbours(2,
"
ABCDE
"
) = (
"
AB
"
,
"
BC
"
,
"
CD
"
,
"
DE
"
)
neighbours(3,
"
ABCDE
"
) = (
"
ABC
"
,
"
BCD
"
,
"
CDE
"
)
"""
for
i
in
range
(
len
(
lst
)
-
(
n
-
1
)):
yield
lst
[
i
:
i
+
n
]
def
detect_pulse
(
num_new_samples
):
global
history
,
pulse
,
samples_since_last_pulse
,
q_threshold
,
r_threshold
,
q_spike
# look at 3 consecutive samples, starting 2 samples before the samples that were just added, e.g.:
# existing samples: "ABCD"
# new samples: "EF" => "ABCDEF"
# consider ["CDE", "DEF"]
# new samples: "GHI" => "ABCDEFGHI"
# consider ["EFG", "FGH", "GHI"]
for
[
prev
,
cur
,
next_
]
in
neighbours
(
3
,
history
[
-
(
num_new_samples
+
2
)
:]):
samples_since_last_pulse
+=
1
if
prev
>
cur
<
next_
and
cur
<
q_threshold
:
q_spike
=
samples_since_last_pulse
# we expect the next q-spike to be at least 60% as high as this one
q_threshold
=
(
cur
*
3
)
//
5
elif
(
prev
<
cur
>
next_
and
cur
>
r_threshold
and
samples_since_last_pulse
-
q_spike
<
ECG_RATE
//
10
):
# the full QRS complex is < 0.1s long, so the q and r spike in particular cannot be more than ECG_RATE//10 samples apart
pulse
=
60
*
ECG_RATE
//
samples_since_last_pulse
samples_since_last_pulse
=
0
q_spike
=
-
ECG_RATE
if
pulse
<
30
or
pulse
>
210
:
pulse
=
-
1
# we expect the next r-spike to be at least 60% as high as this one
r_threshold
=
(
cur
*
3
)
//
5
elif
samples_since_last_pulse
>
2
*
ECG_RATE
:
q_threshold
=
-
1
r_threshold
=
1
pulse
=
-
1
def
callback_ecg
(
datasets
):
def
callback_ecg
(
datasets
):
global
update_screen
,
history
,
filebuffer
,
write
global
update_screen
,
history
,
filebuffer
,
write
update_screen
+=
len
(
datasets
)
update_screen
+=
len
(
datasets
)
# update histogram datalist
# update histogram datalist
if
not
pause_histogram
:
if
not
pause_histogram
:
history
+=
datasets
update_history
(
datasets
)
detect_pulse
(
len
(
datasets
))
# trim old elements
history
=
history
[
-
HISTORY_MAX
:]
# buffer for writes
# buffer for writes
if
write
>
0
:
if
write
>
0
:
...
@@ -207,12 +274,24 @@ def draw_histogram():
...
@@ -207,12 +274,24 @@ def draw_histogram():
)
)
else
:
else
:
draw_leds
((
max
(
history
[
-
5
:])
*
scale
+
SCALE_FACTOR
)
*
11
/
(
SCALE_FACTOR
*
2
))
draw_leds
((
max
(
history
[
-
5
:])
*
scale
+
SCALE_FACTOR
)
*
11
/
(
SCALE_FACTOR
*
2
))
disp
.
print
(
if
pulse
<
0
:
current_mode
+
(
"
+Bias
"
if
bias
else
""
),
disp
.
print
(
posx
=
0
,
current_mode
+
(
"
+Bias
"
if
bias
else
""
),
posy
=
0
,
posx
=
0
,
fg
=
(
COLOR_MODE_FINGER
if
current_mode
==
MODE_FINGER
else
COLOR_MODE_USB
),
posy
=
0
,
)
fg
=
(
COLOR_MODE_FINGER
if
current_mode
==
MODE_FINGER
else
COLOR_MODE_USB
),
)
else
:
disp
.
print
(
"
BPM: {}
"
.
format
(
pulse
),
posx
=
0
,
posy
=
0
,
fg
=
(
COLOR_MODE_FINGER
if
current_mode
==
MODE_FINGER
else
COLOR_MODE_USB
),
)
# announce writing ecg log
# announce writing ecg log
if
write
>
0
:
if
write
>
0
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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