Skip to content

Commit b4b6896

Browse files
committed
bump version number
1 parent 87c8e98 commit b4b6896

File tree

4 files changed

+16
-778
lines changed

4 files changed

+16
-778
lines changed

CITATION.cff

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@ authors:
55
given-names: Fabrizio
66
orcid: https://orcid.org/0000-0002-0057-8940
77
title: "BleakHeart"
8-
version: 0.1.3
9-
doi: 10.5281/zenodo.10992864
10-
https://doi.org/
11-
date-released: 2025-01-19
8+
version: 0.2.0
9+
doi: https://doi.org/10.5281/zenodo.10992864
10+
date-released: 2025-10-19
1211
url: "https://github.com/fsmeraldi/bleakheart"

README.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# 🖤 BleakHeart
22

3-
An asynchronous BLE Heart Monitor library that supports additional measurements (such as ECG and accelerometer data) available from Polar sensors through the Polar Measurement Data interface.
3+
An asynchronous BLE Heart Monitor library that supports additional measurements available from Polar sensors through the Polar Measurement Data interface (currently, ECG and accelerometer data from the Polar H10, and PPG from the Polar Verity).
44

55
BleakHeart is written in Python using the [asyncio](https://docs.python.org/3/library/asyncio.html) framework; BLE communication is based on [Bleak](https://bleak.readthedocs.io/en/latest/#).
66

@@ -14,8 +14,9 @@ python3 -m pip install "bleakheart"
1414
## Features
1515

1616
* Supports heart rate acquisition for devices supporting the standard BLE [heart rate service](https://www.bluetooth.com/specifications/specs/heart-rate-service-1-0/), including RR intervals, instant heart rate, energy expenditure and (client-based) time stamps;
17-
* Reads Accelerometer and ECG signals from the Polar H10 chest strap;
18-
* Offers partial support for measurements available from other Polar devices through the Polar Measurement Data interface;
17+
* Reads Accelerometer and ECG signals from the Polar H10 chest strap;
18+
* Reads PPG data from the Polar Verity, including in SDK mode;
19+
* Offers partial support for other measurements available through the Polar Measurement Data interface, possibly from other devices;
1920
* Normalises Polar sensor timestamps to Epoch time;
2021
* Reads the battery charge state through the standard BLE [battery service](https://www.bluetooth.com/specifications/specs/battery-service/) (also available on other types of BLE devices);
2122
* Compatible with Jupyter Notebooks (IPython version 7+, IPykernel version 5+).
@@ -27,7 +28,7 @@ BleakHeart supports a variety of software design choices. Specifically:
2728
* Alternatively, data can be sent to a callback. Simple tasks such as sensor logging can be accomplished with only a minimal understanding of ```asyncio```;
2829
* All data are tagged with their measurement type; thus the same queue or callback can be used to handle different types of measurements if desired.
2930

30-
Please see the [getting_started](examples/getting_started.ipynb) notebook in the examples directory, or click on the image below for a video introduction.
31+
Please see the [getting_started](examples/getting_started.ipynb) notebook in the examples directory, or see this [video introduction](https://youtu.be/WzNl-cQH7HU).
3132

3233
<a href="https://youtu.be/WzNl-cQH7HU"><img src="screenshot.png" align="center" height="400" width="542" ></a>
3334

@@ -36,13 +37,14 @@ The examples directory also contains detailed stand-alone examples for some of t
3637

3738
## Limitations
3839

39-
BleakHeart has mainly been tested on a Polar H10 chest strap (under Linux), since that is what I have available. However, reports from Windows and MacOS users have been positive. Other Polar devices are only partly supported; measurements other than ECG and acceleration are returned as raw bytearrays. Offline recording to the internal Polar H10 memory is not supported.
40+
BleakHeart has mainly been tested on a Polar H10 chest strap under Linux and on a Verity sensor under Windows. However, reports from Windows and MacOS users have been positive. Other Polar devices are only partly supported; measurements other than ECG and acceleration on the H10, and PPG on the Verity, are returned as raw bytearrays. Offline recording to the internal Polar H10 memory is not supported.
4041

4142
## Credits and contributing
4243

4344
This software was originally developed and is maintained by [Fabrizio Smeraldi](http://www.eecs.qmul.ac.uk/~fabri/). Many thanks to
4445

4546
* Alex Ong - [alex-ong](https://github.com/alex-ong),
47+
* Andy Scott - [scott86](https://github.com/scott86),
4648
* Chris Spooner - [Chris-Spooner999](https://github.com/Chris-Spooner999),
4749
* Fareza - [farezae](https://github.com/farezae),
4850
* Léo Flaventin Hauchecorne - [hl037](https://github.com/hl037),
@@ -63,9 +65,11 @@ This software is provided subject to the terms of the [Mozilla Public License ve
6365

6466
## Resources
6567

66-
* The official [Polar BLE SDK](https://github.com/polarofficial/polar-ble-sdk), contains software for Android and iOS and some interesting documentation, in particular:
68+
* The official [Polar BLE SDK](https://github.com/polarofficial/polar-ble-sdk), contains software for Android and iOS and some interesting [documentation](https://github.com/polarofficial/polar-ble-sdk/blob/master/README.md), in particular:
6769
* An explanation of [ECG on the Polar H10](https://github.com/polarofficial/polar-ble-sdk/blob/master/technical_documentation/H10_ECG_Explained.docx)
68-
* A specification of the proprietary [Polar Measurement Data](https://github.com/polarofficial/polar-ble-sdk/blob/52ef4c4b77e5f83b0839f0f4f72623a9b9d79372/technical_documentation/Polar_Measurement_Data_Specification.pdf) service
70+
* An older but detailed specification of the proprietary [Polar Measurement Data](https://github.com/polarofficial/polar-ble-sdk/blob/52ef4c4b77e5f83b0839f0f4f72623a9b9d79372/technical_documentation/Polar_Measurement_Data_Specification.pdf) service
71+
* More details on the [PMD frame types](https://github.com/polarofficial/polar-ble-sdk/blob/master/technical_documentation/online_measurement.pdf)
72+
* Decoding examples for the Verity ACC delta frames: see [here](https://github.com/polarofficial/polar-ble-sdk/issues/187) and [here](https://github.com/polarofficial/polar-ble-sdk/issues/443)
6973
* An explanation of the [time system](https://github.com/polarofficial/polar-ble-sdk/blob/master/documentation/TimeSystemExplained.md) in Polar devices (BleakHeart transparently normalises this to Epoch time).
7074
* The [Heart Rate service](https://www.bluetooth.com/specifications/specs/heart-rate-service-1-0/) specification, on the BLE SIG website.
7175
* The [Battery service](https://www.bluetooth.com/specifications/specs/battery-service/) specification, on the BLE SIG website.

src/bleakheart/_version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
""" contains the current package version, which is imported
2-
by __init__.py """
2+
by __init__.py and by the packager """
33

44

5-
__version__ = "0.1.3"
5+
__version__ = "0.2.0"

0 commit comments

Comments
 (0)