I want a read-only characteristic that updates every 30 seconds with a random number. How can I do this @mikolak?
const myCharacteristic = new SimulatedCharacteristic({
uuid: '90',
id: 91,
isReadable: true,
isWritableWithResponse: false,
isWritableWithoutResponse: false,
isNotifiable: false,
value: ???
})