chipimix

Results 20 comments of chipimix

> you can just change icons + Bundle IDs + app basenames, and you're good to go. Could you please elaborate on this? Thanks! [EDIT] I tried changing filenames as...

I think I forgot a bolean parameter in the subscribe method; but now I encounter this error: ![image](https://user-images.githubusercontent.com/15652959/83152803-20bede00-a0f6-11ea-972e-dc708deb666d.png)

I thought it could be outdatted since the [noble example](https://github.com/noble/noble/wiki/Getting-started) features the boolean parameter. ` batteryLevelCharacteristic.subscribe(true, function(error) { console.log('battery level notification on'); });` Thanks for pointing the direction though. Still...

unfortunately no! `uartCharacteristic.subscribe(function(error) { console.log('notification on'); }); uartCharacteristic.on('data', function(data, isNotification){ console.log(data); });` results in: ![image](https://user-images.githubusercontent.com/15652959/83156635-8d3bdc00-a0fa-11ea-9b6c-04fb62dcb7f0.png) If I inspect the characteristic this is what I see: ![image](https://user-images.githubusercontent.com/15652959/83156929-ead02880-a0fa-11ea-8a5f-294b19da9b29.png) uartCharacteristic.read() does trigger the...

sure! but the issue is don't get any error in the subscribe callback ``` uartCharacteristic.subscribe(function(error) { console.log(error) console.log('notification on'); }); ``` results in: ![image](https://user-images.githubusercontent.com/15652959/83161985-0b02e600-a101-11ea-8c68-98ed07cff1ca.png)

I think I found the issue! From what I understand, when we subscribe a characteristic with the notify attribute, we're basically writing something like [0x01,0x00] to the Client Characteristic Configuration...

Thanks for the fast reply. I understand this. I can get the timestamps relative to the instant 0 - the game start. However I would also like to know the...

yes you are correct! However gamecreation is relative to the loadingscreen appearing: gameCreation | long | Designates the timestamp when champion select ended and the loading screen appeared, NOT when...

Adding the duration of the loading screen to the gameCreation long would be a workaround, Yes. But to put it plainly I would say what I am looking is the...

> Why would you like to see the exact time of the game start? I thought, as you mentioned above, you wanted to know the loading time duration. So that...