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
b3d6d203
Commit
b3d6d203
authored
5 years ago
by
fleur
Browse files
Options
Downloads
Patches
Plain Diff
i'll make my own code style it'll be terrible
parent
8f78143e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!347
electrodes unfiltered
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
preload/apps/ecg/__init__.py
+3
-2
3 additions, 2 deletions
preload/apps/ecg/__init__.py
with
3 additions
and
2 deletions
preload/apps/ecg/__init__.py
+
3
−
2
View file @
b3d6d203
...
...
@@ -57,7 +57,8 @@ COLORS = [((23 + (15 * i)) % 360, 1.0, 1.0) for i in range(11)]
moving_average
=
0
alpha
=
2
beta
=
3
betadash
=
beta
/
(
alpha
+
beta
)
betadash
=
beta
/
(
alpha
+
beta
)
def
update_history
(
datasets
):
global
history
,
moving_average
,
alpha
,
beta
,
last_sample_count
...
...
@@ -65,7 +66,7 @@ def update_history(datasets):
for
val
in
datasets
:
if
current_mode
==
MODE_FINGER
:
history
.
append
(
val
-
moving_average
)
moving_average
+=
betadash
*
(
val
-
moving_average
)
moving_average
+=
betadash
*
(
val
-
moving_average
)
# identical to: moving_average = (alpha * moving_average + beta * val) / (alpha + beta)
else
:
history
.
append
(
val
)
...
...
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