Compare commits

...

3 Commits

Author SHA1 Message Date
Roberto Viola
d160612781 concept 2 rower metric missing #1856 2023-12-07 08:45:04 +01:00
Roberto Viola
6b32f844d9 Revert "PM5 without the row suffix"
This reverts commit 49656383d1.
2023-12-06 08:37:36 +01:00
Roberto Viola
49656383d1 PM5 without the row suffix 2023-12-03 19:42:43 +01:00
2 changed files with 2 additions and 2 deletions

View File

@@ -158,7 +158,7 @@ void concept2skierg::characteristicChanged(const QLowEnergyCharacteristic &chara
emit debug(QStringLiteral("Current Distance: ") + QString::number(Distance.value()));
uint8_t rowing_state = newValue.at(10);
isActive = (rowing_state != 0);
//isActive = (rowing_state != 0);
if (!isActive) // SkiErg keeps reporting old Speed when not used
{
Speed = 0;

View File

@@ -63,7 +63,7 @@ class concept2skierg : public rower {
bool noWriteResistance = false;
bool noHeartService = false;
bool isActive = false;
bool isActive = true;
#ifdef Q_OS_IOS
lockscreen *h = 0;