Skip to content

Cannot connect to device #118

Description

@ShashwatMDas

I get this error whenever I try to connect a bluetooth device via my react native app:

Error: read failed, socket might closed or timeout, read ret: -1
Unable to connect to device

Here's what I'm trying to do:
connectToDevice () { if (this.state.discovering) { return false } else { this.setState({ discovering: true }) console.log("searching"); BluetoothSerial.list() .then((Devices) => { this.setState({ Devices, discovering: false }) for(var i = 0; 1; i++) { if(Devices[i]["name"] == "JBL Flip 3 SE") { console.log(Devices[i]["id"]); BluetoothSerial.connect(Devices[i]["id"]).then((res) => { console.log(res); }).catch(err => { console.log(err); }) break; } } // console.log(unpairedDevices); }) .catch((err) => console.log(err.message)) } }

Same happens even when I clone the example repo.

Any idea why this is happening?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions