Pegasus implementation of SmartSensor Host

Dependencies:   USBDevice max32630fthr

Fork of MAXREFDES220# by Maxim Integrated

Finger Heart Rate Monitor and SpO2 Monitor

The MAXREFDES220 Smart Sensor FeatherWing board is a integrated solution for providing finger-based heart rate measurements and SpO2 (blood oxygen saturation). This evaluation board interfaces to the host computer using the I2C interface. Heart rate outpu is available in beats per minute (BPM) and SpO2 is reported in percentages.; the PPG (photoplethysmography) raw data is also available. The board has an MAX30101 chip which is a low power heart rate monitor with adjustable sample rates and adjustable LED currents. The low cost MAX32664 microcontroller is pre-flashed with C code for finger-based pulse rate and SpO2 monitoring. Bootloader software is included to allow for future algorithms or updates to the algorithm from Maxim Integrated.

Ordering information will be available soon.

Note: SpO2 values are not calibrated. Calibration should be performed using the final end product.

MAXREFDES220 FeatherWing Pinout Connections

/media/uploads/phonemacro/maxrefdes220_pinouts_heart_rate_monitor3.jpg

Files at this revision

API Documentation at this revision

Comitter:
Shaun Kelsey
Date:
Wed Apr 11 16:55:26 2018 -0700
Parent:
2:1eb76021dd76
Commit message:
Define MAXIM_PLATFORM_NAME

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/main.cpp	Wed Apr 11 16:53:02 2018 -0700
+++ b/main.cpp	Wed Apr 11 16:55:26 2018 -0700
@@ -8,6 +8,10 @@
 #include "SSBootloaderComm.h"
 #include "SSMAX30101Comm.h"
 
+#ifndef MAXIM_PLATFORM_NAME
+#define MAXIM_PLATFORM_NAME	"Pegasus"
+#endif
+
 #if ENABLE_LED_STATUS
 //Set yellow light during boot
 DigitalOut rLED(LED1, LED_ON);