Addition of CoreTemp sensor support (#4207)

This patch adds ANT+ support for CoreTemp body sensors.
If there is core temperature XData then it uses that for "tcore" data instead of using the estimated calculation.
This commit is contained in:
Ivor Hewitt
2025-01-20 19:36:02 +00:00
committed by GitHub
parent aee21447a0
commit 3af81eb27a
24 changed files with 414 additions and 21 deletions

View File

@@ -121,6 +121,10 @@ RideFileTableModel::setHeadings(RideFile::SeriesType series)
headings_ << tr("Temperature");
headingsType << RideFile::temp;
}
if (series == RideFile::tcore || ride->areDataPresent()->tcore) {
headings_ << tr("Core Temperature");
headingsType << RideFile::tcore;
}
if (series == RideFile::lrbalance || ride->areDataPresent()->lrbalance) {
headings_ << tr("Left/Right Balance");
headingsType << RideFile::lrbalance;