mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-02-17 01:49:55 +00:00
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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user