Provides information about the maintenance status of the bike; at which point in time and/or distance it is needed
constonNextServiceChange= (value:ServiceTrigger, timestamp?:Date) => {console.log(value, timestamp);};COBI.motor.nextService.read(onNextServiceChange); // Instantly get the current valueCOBI.motor.nextService.subscribe(onNextServiceChange);COBI.motor.nextService.unsubscribe(onNextServiceChange);
constonNextServiceChange= (value, timestamp) => {console.log(value, timestamp);};COBI.motor.nextService.read(onNextServiceChange); // Instantly get the current valueCOBI.motor.nextService.subscribe(onNextServiceChange);COBI.motor.nextService.unsubscribe(onNextServiceChange);