Questions tagged [pairing]

Bonding of two devices, eg two smartphones, or a computer and keyboard. Term is commonly heard in combination with Bluetooth. When pairing successfully completes, a bond forms between the two devices. This enables those two devices to connect to each other in the future without repeating the pairing process to confirm device identities. When desired, the user can remove the bonding relationship.

241 questions
0
votes
1 answer

Scan for specific ble device using stored services

I have a ble app that provides a paired button. When the button is clicked, the app will scan for some ble devices with specific name and show them to a tableview. Below is the scan function: func scan() { let bonding =…
Tony Chen
  • 207
  • 2
  • 13
0
votes
0 answers

bluez5: is possible to create a BLE connection asking for PIN/password?

I have a BLE server running, but I would like to limit the connection of remotes devices by asking/requesting for a PIN, passkey, or similar. Is that possible in Low Energy? I do not mean classic bluetooth. I am not really sure if it is possible or…
0
votes
0 answers

API 15 (4.04) Bluetooth auto pair with pin

I want to pair to a Bluetooth device automatically. The app that I'm developing must be for API 15 (4.04). I tried different solutions with reflection but nothing seems to work. The pin is 0000. Can somebody help me? …
0
votes
0 answers

Pair with noinputnooutput remote bluetooth device

I want to pair my PC with a remote bluetooth device whose IO capacity is set as "noinputnooutput" as this device has neither keyboard nor display but my PC always generates a pin code to support from the remote device or asks me to put the pin code…
0
votes
0 answers

Tweak the iOS bonding request dialog

We are shoe-horning BLE into an existing device, and unfortunately this device has a very limited display and can only display 4 digits. We would like to use Numeric Comparison mode for the best security, but it generates a PIN that is 6 characters…
Betty Crokker
  • 3,001
  • 6
  • 34
  • 68
0
votes
1 answer

Android things pairing with BLE

I have a raspi3 with android things on it and I want to connect to a BLE device that requires a user authentication for bounding. On a phone, after having set a characteristic on the BLE device, I am able to receive the Broadcast event…
Manuela
  • 462
  • 6
  • 18
0
votes
0 answers

Trying to pair on a LG G5, will not change the state to BONDED

This is the method that I call: Method method = device.getClass().getMethod("createBond", (Class[]) null); method.invoke(device, (Object[]) null); This is the ACTION_BOND_STATE_CHANGED receiver that I registered: private final…
rosu alin
  • 5,674
  • 11
  • 69
  • 150
0
votes
0 answers

How to get IRK on peripheral if central uses BR/EDR pairing

I am programming a device which uses BR/EDR and BLE. BR/EDR is mostly used for audio data while BLE should work as control channel. Access to the used BLE characteristic returns a gatt_status_insufficient_authentication if and only if the central…
maze
  • 789
  • 1
  • 7
  • 31
0
votes
0 answers

DeviceInformation.Pairing is always null

I have a problem with Bluetooth pairing in the windows UWP device driver. I am currently on a windows 10 (Build 10240) computer and I use a vs2015. I create a device watcher with a (custom)selector to get paired and unpaired Bluetooth devices. I get…
dkeekstra
  • 1
  • 1
0
votes
1 answer

Automatic connection between 2 IOS Apps

I have written a Solution that contains two Apps, the first app acts like a remote control app and the second app display some stuff depending on the selection of the first app. State Now: Currently, both apps communicate over a Bluetooth…
feldeOne
  • 417
  • 3
  • 18
0
votes
1 answer

Handle Bluetooth(classic) Pairing Unpairing requests in UWP

I'm trying to programmatically accept a Bluetooth pairing request from an Android device on a Win 10 iot. Which unfortunately has not worked yet. I can not hang in, on any event that gives me the opportunity to accept the pairing request of the…
0
votes
1 answer

Android paired Bluetooth disappears when device reboots

I want the connected device to get BluetoothDevice device information without scanning Bluetooth, so I store all Bluetooth-connected devices. However, while other devices behave as expected, one type of Bluetooth devices will lose their paired…
박진홍
  • 5
  • 5
0
votes
3 answers

Bluetooth pairing using fixed PIN on bluez 5

I am trying to connect 2 or more Raspberry Pi 3 boards over bluetooth. I am looking for options to set security while pairing. I am using Raspian-stretch(Latest one available). Bluez version available on RPI-3 is 5.23(as shown from bluetoothd -v…
sachin
  • 665
  • 3
  • 8
  • 15
0
votes
0 answers

32 Feet.net Pair Without a pin

Does anyone know how to pair to a device without a pin in 32 feet? bool isPaired = BluetoothSecurity.PairRequest(device.DeviceAddress, pin); I have disabled pin or pass entry on the bluetooth module im using and windows pairs fine with it. I…
noone392
  • 1,624
  • 3
  • 18
  • 30
0
votes
0 answers

BLE Just Works method in iOS Swift

I'm working with BLE. When phone and BLE are in connecting state, that popup will show. How to disable / hide Bluetooth Pairing Request popup? I've search about Just Works method, but I dont know how to implement that. Is Just Works method…