summaryrefslogtreecommitdiff
path: root/wasp/apps/heart.py
diff options
context:
space:
mode:
Diffstat (limited to 'wasp/apps/heart.py')
-rw-r--r--wasp/apps/heart.py17
1 files changed, 10 insertions, 7 deletions
diff --git a/wasp/apps/heart.py b/wasp/apps/heart.py
index 45b3a69..541e57d 100644
--- a/wasp/apps/heart.py
+++ b/wasp/apps/heart.py
@@ -1,18 +1,21 @@
# SPDX-License-Identifier: LGPL-3.0-or-later
# Copyright (C) 2020 Daniel Thompson
+"""Heart rate monitor
+~~~~~~~~~~~~~~~~~~~~~
+
+A graphing heart rate monitor using a PPG sensor.
+
+.. figure:: res/HeartApp.png
+ :width: 179
+"""
+
import wasp
import machine
import ppg
class HeartApp():
- """Heart Rate Sensing application.
-
- .. figure:: res/HeartApp.png
- :width: 179
-
- Screenshot of the heart rate application
- """
+ """Heart rate monitor application."""
NAME = 'Heart'
def foreground(self):