incyclist-devices 2.3.15-beta.0 → 2.3.15-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -390,8 +390,10 @@ class BleInterface extends events_1.default {
|
|
|
390
390
|
checkForWahooEnhancement(announcement) {
|
|
391
391
|
if (announcement.name.includes('KICKR')) {
|
|
392
392
|
const supported = announcement.serviceUUIDs.map(s => (0, utils_1.beautifyUUID)(s));
|
|
393
|
-
if (supported.length === 1 && supported[0] === '1818')
|
|
393
|
+
if (supported.length === 1 && (supported[0] === '1818' || supported[0] === 'FC82')) {
|
|
394
|
+
this.logEvent({ message: 'wahoo enhancement detected', name: announcement.name, supported });
|
|
394
395
|
return true;
|
|
396
|
+
}
|
|
395
397
|
}
|
|
396
398
|
return false;
|
|
397
399
|
}
|