You are here: Forum Home → ANT+ Forums → ANT+ Fitness Equipment → Thread
——————————————————
Free Indoor Cycling Software - https://maximumtrainer.com
INSTANT POWER IS 32 AVG POWER IS 283
INSTANT POWER IS 39 AVG POWER IS 283
INSTANT POWER IS 45 AVG POWER IS 283
INSTANT POWER IS 52 AVG POWER IS 283
......
——————————————————
Free Indoor Cycling Software - https://maximumtrainer.com
// FE State Bit Field - Present in all message:
// Detect if lap toogle activated
if (!lapToogleSet) {
lapToogleValue = ((stMessage.aucData[8] >> 7) & 0x01);
lapToogleSet = true;
}
else {
bool newLapToogleValue = ((stMessage.aucData[8] >> 7) & 0x01);
if (newLapToogleValue != lapToogleValue) {
numberLap++;
qDebug() << "NEW LAP!" << numberLap;
emit lapChanged();
lapToogleValue = newLapToogleValue;
}
}
——————————————————
Free Indoor Cycling Software - https://maximumtrainer.com
——————————————————
Free Indoor Cycling Software - https://maximumtrainer.com