Get and connect to bluetooth devices using React Native
npm install react-native-bluetooth-devices
import BluetoothDevices from "react-native-bluetooth-devices";
// ...
BluetoothDevices.startScan()
BluetoothDevices.addEventListener("onConnectedDevices", (res: {
devices: Array<DeviceType>
}) => {
console.log(res.devices)
BluetoothDevices.connectToDevice(res.devices[0].id)
BluetoothDevices.disconnect()
})
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT