The expressed power from the user.
A heart-rate sensor is the primary source for calculating this, but if it is missing - current bike's speed, road grade, etc. are used. Also the biker's body-metrics are always taken into account.
The value is in Watts
const onUserPowerChange = (value: number, timestamp?: Date) => { console.log(value, timestamp); }; COBI.rideService.userPower.subscribe(onUserPowerChange); COBI.rideService.userPower.unsubscribe(onUserPowerChange);
const onUserPowerChange = (value, timestamp) => { console.log(value, timestamp); }; COBI.rideService.userPower.subscribe(onUserPowerChange); COBI.rideService.userPower.unsubscribe(onUserPowerChange);
Last updated 1 year ago