Wilson

Results 12 comments of Wilson

@focussing consider discoverServices with UUIDs ``` connectedPeripheral.discoverServices([serviceUUID_1, serviceUUID_2]); ``` Please tell me what's the result, thank you

You have to add the event listener on the latest peripheral you get ``` centralManager.addEventListener('didConnectPeripheral', function(e) { console.log('\ndidConnectPeripheral'); console.log(e); console.log(e.peripheral); centralManager.stopScan(); connectedPeripheral = e.peripheral; connectedPeripheral.addEventListener('didDiscoverServices', function(e) { console.log('\ndidDiscoverServices'); console.log(e); console.log(e.peripheral);...