Web-Bluethooth
Reported by
l.marius...@gmail.com,
Apr 27 2016
|
|||
Issue description
Device name: Nexus 5
From "Settings > About Chrome"
Application version:
OS:Android M 6.01
URLs (if applicable):
This is my script
var bluetoothDevice;
function scanForDevice() {
'use strict';
let options = {filters: []};
let filterName = document.getElementById('name').value;
if (filterName) {
options.filters.push({name: filterName});
}
bluetoothDevice = null;
navigator.bluetooth.requestDevice(options)
.then(device => {
bluetoothDevice = device;
return bluetoothDevice.gatt.connect();
})
.catch(error => {
});
}
Behavior in Android Browser (if applicable):
Tell's me there is an availiable device, but I'm not able to connect to it. There is only one MacBook Pro, who can connect to the device, with expected result.
Steps to reproduce:
(1)scanning for device
(2)find the device
(3)connect to device
Expected result:
when finding the deivce with my nexus, the device should stop advertising, and light up another led light.
Actual result:
Finds the device, but not able to connect.
,
Apr 28 2017
This issue has been available for more than 365 days, and should be re-evaluated. Please re-triage this issue. The Hotlist-Recharge-Cold label is applied for tracking purposes, and should not be removed after re-triaging the issue. For more details visit https://www.chromium.org/issue-tracking/autotriage - Your friendly Sheriffbot
,
Aug 1
|
|||
►
Sign in to add a comment |
|||
Comment 1 by krav...@chromium.org
, Apr 27 2016Status: Available (was: Unconfirmed)