You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I hope this message finds you well. I am using the ant-plus library to capture heart rate data from a Polar Verity Sense sensor. While I can successfully log the heart rate data, I am having trouble extracting the RSSI (Received Signal Strength Indicator) value.
Could you please provide guidance on how to correctly obtain the RSSI value with this sensor?
Thank you for your assistance.
Best regards,
Nuri
The text was updated successfully, but these errors were encountered:
var Ant = require('ant-plus');
var stick = new Ant.GarminStick3;
var scanner = new Ant.HeartRateScanner(stick);
scanner.on('hbData', function (data) {
console.log('Heart Rate Data:', data);
});
stick.on('startup', function () {
console.log('ANT+ stick startup');
scanner.scan();
});
if (!stick.open()) {
console.log('Stick not found!');
}
Hi
I hope this message finds you well. I am using the ant-plus library to capture heart rate data from a Polar Verity Sense sensor. While I can successfully log the heart rate data, I am having trouble extracting the RSSI (Received Signal Strength Indicator) value.
Could you please provide guidance on how to correctly obtain the RSSI value with this sensor?
Thank you for your assistance.
Best regards,
Nuri
The text was updated successfully, but these errors were encountered: