-
Notifications
You must be signed in to change notification settings - Fork 291
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cannot connect to device #118
Comments
It's all the same to me. Is there anyone we can help us with? Please! |
Same with me. Is there any solution? |
Same with me. Is there any solution? @rusel1989 Please help us to resolve this? |
Use react-native-bluetooth-devices to connect with device |
just send device id |
any update here? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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?
The text was updated successfully, but these errors were encountered: