Don Coleman

Results 96 comments of Don Coleman

You can use [Serial](https://www.arduino.cc/reference/en/language/functions/communication/serial/) or [SoftwareSerial](https://www.arduino.cc/en/Reference/softwareSerial).

@francesco98 maybe your board isn't supported or you need something extra. See if other people using your board have a solution. Or use one of the UARTs built into the...

This plugin does not support BLE on Android, you need https://github.com/don/cordova-plugin-ble-central. I'm not sure what you mean by "I need to write "raw" bytes directly to the device using bluetoothSerial.write...

I'm not sure what that error is from. RCTBluetoothSerial is not part of this plugin.

Right now the plugin supports one connection at a time. Connecting to multiple devices is possible, but will require code changes.

It's doable to have this connect to multiple client connections but not trivial. You need to keep track of which callbacks go to which client. I'm working on a new...

If you're doing Bluetooth Low Energy try [Cordova BLE Plugin](https://github.com/don/cordova-plugin-ble-central) which supports simultaneous connections to multiple peripherals on iOS and Android.

@rosterloh Basically you can just call connect() multiple times. When you use the [BLE plugin](https://github.com/don/cordova-plugin-ble-central) you're responsible for managing the device ids, since they need to be passed into every...

@stakutis I'm mostly work with BLE lately. My [BLE plugin](https://github.com/don/cordova-plugin-ble-central) will do multiple simultaneous connections. I don't expect it will get added to this plugin unless a client needs it.

@stakutis it sounds like your device is bluetooth classic. If it works with this plugin and Android it's Serial Port Profile (SPP). Some devices support Classic and BLE, but most...