New issue
Advanced search Search tips
Note: Color blocks (like or ) mean that a user may not be available. Tooltip shows the reason.

Issue 607136 link

Starred by 1 user

Issue metadata

Status: Assigned
Owner:
Last visit > 30 days ago
EstimatedDays: ----
NextAction: ----
OS: Android
Pri: 3
Type: ----



Sign in to add a comment

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.



 
Owner: animohan@chromium.org
Status: Available (was: Unconfirmed)
Project Member

Comment 2 by sheriffbot@chromium.org, Apr 28 2017

Labels: Hotlist-Recharge-Cold
Status: Untriaged (was: Available)
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
Status: Assigned (was: Untriaged)

Sign in to add a comment