The total operating hours [h] over lifecycle of the drive unit
constonPowerOnTimeChange= (value:number, timestamp?:Date) => {console.log(value, timestamp);};COBI.motor.powerOnTime.read(onPowerOnTimeChange); // Instantly get the current valueCOBI.motor.powerOnTime.subscribe(onPowerOnTimeChange);COBI.motor.powerOnTime.unsubscribe(onPowerOnTimeChange);
constonPowerOnTimeChange= (value, timestamp) => {console.log(value, timestamp);};COBI.motor.powerOnTime.read(onPowerOnTimeChange); // Instantly get the current valueCOBI.motor.powerOnTime.subscribe(onPowerOnTimeChange);COBI.motor.powerOnTime.unsubscribe(onPowerOnTimeChange);