User Power
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