You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Modernize to v2.1.0: PulseExpress API, expanded examples, bootloader
- Rename driver class Max32664 -> PulseExpress and types Max32664* ->
PulseExpress*; old names kept via max32664.h compatibility shim. Rename
sources to protocentral_pulse_express.{h,cpp}. SPDX headers throughout.
- Fix earlier-firmware regression: begin() no longer hard-fails on non-40.x
hubs; version check is now a soft warning exposed via firmwareSupported().
- Fix raw PPG streaming data loss: drain FIFO with a short read delay,
clamp the OpenView 16-bit scaling, and make the OpenView send non-blocking
so a host stall cannot back up and overflow the sensor FIFO.
- Add public readStatus() hub-diagnostics accessor.
- Expand examples from 3 to 11 (01.Name convention): heart rate/SpO2,
BPT calibration, BPT estimation, EEPROM persistence, multi-subject
calibration, HRV, device info/diagnostics.
- Add MAX32664 bootloader API (pulse_express_bootloader.{h,cpp}), the
FirmwareFlash example, and a host flashing script under extras/. The
.msbl firmware image is non-redistributable and is gitignored.
- Update README, keywords.txt, library.properties (version 2.1.0), add
CHANGELOG.md and Uno R4 upload scripts.
## Don't have one? [Buy it here](https://protocentral.com/product/pulse-express-pulse-ox-heart-rate-sensor-with-max32664/)
8
9
9
10

10
11
11
-
Pulse Express is an efficient and versatile breakout board with integrated high-sensitivity optical sensors (MAX30102) and also a chip that does the calculations (biometric sensor hub MAX32664D). Integrating Maxim’s MAX32664 Version D makes Pulse Express unique, with an internal algorithm that works to measure different data as you start. With its built-in low power capability, the board is suitable for any wearable health for finger-based applications.
12
+
Pulse Express is a compact breakout that pairs a high-sensitivity MAX30102 optical
13
+
sensor with a MAX32664D biometric sensor hub. The MAX32664D runs Maxim/ADI's
14
+
on-chip Blood-Pressure-Trending (BPT) algorithm and reports calculated heart rate,
15
+
SpO2 and blood-pressure-trend data over I2C, so the host MCU does no signal
16
+
processing. Suitable for finger-based wearable health R&D.
12
17
13
-
**Note: This device is only meant to be used for research & development purposes and is NOT to be used as a medical device. This product is not FDA, CE or FCC approved for consumer use.**
18
+
> **Note:** This device is for research & development only and is **NOT** a medical
19
+
> device. It is not FDA, CE or FCC approved for consumer use.
14
20
15
-
## Hardware Setup
21
+
## Overview
16
22
17
-
Connection with the Arduino board is as follows:
18
-
19
-
|Max32664 pin label| Arduino Connection |Pin Function |
All fallible calls return `PulseExpressStatus`; compare against
131
+
`PulseExpressStatus::Ok`. See [`src/protocentral_pulse_express.h`](src/protocentral_pulse_express.h)
132
+
for the full documented API.
133
+
134
+
> **Migrating from 2.0.x:** the class was `Max32664` with `Max32664*` types. Those
135
+
> names still work via `#include "max32664.h"`. New code should use `PulseExpress`
136
+
> and `#include "protocentral_pulse_express.h"`. See [CHANGELOG.md](CHANGELOG.md).
137
+
138
+
## For further details
139
+
140
+
Refer to [the Pulse Express documentation](https://docs.protocentral.com/getting-started-with-PulseExpress).
36
141
37
142
License Information
38
143
===================
39
144
40
145

41
146
42
-
This product is open source! Both, our hardware and software are open source and licensed under the following licenses:
43
-
44
-
Hardware
45
-
---------
46
-
47
-
**All hardware is released under the [CERN-OHL-P v2](https://ohwr.org/cern_ohl_p_v2.txt)** license.
48
-
49
-
Copyright CERN 2020.
50
-
51
-
This source describes Open Hardware and is licensed under the CERN-OHL-P v2.
52
-
53
-
You may redistribute and modify this documentation and make products
54
-
using it under the terms of the CERN-OHL-P v2 (https:/cern.ch/cern-ohl).
55
-
This documentation is distributed WITHOUT ANY EXPRESS OR IMPLIED
56
-
WARRANTY, INCLUDING OF MERCHANTABILITY, SATISFACTORY QUALITY
57
-
AND FITNESS FOR A PARTICULAR PURPOSE. Please see the CERN-OHL-P v2
58
-
for applicable conditions
59
-
60
-
Software
61
-
--------
62
-
63
-
**All software is released under the MIT License(http://opensource.org/licenses/MIT).**
64
-
65
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
66
-
67
-
Documentation
68
-
-------------
69
-
**All documentation is released under [Creative Commons Share-alike 4.0 International](http://creativecommons.org/licenses/by-sa/4.0/).**
* Attribution — You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
81
-
* ShareAlike — If you remix, transform, or build upon the material, you must distribute your contributions under the same license as the original.
0 commit comments