Starting a Bluetooth connection

To start a Bluetooth connection with the card reader:

1

Add the initBluetoothSearch method to your code that starts a Bluetooth search from your app settings to discover the card reader.

ClearentConnection *connection = [[ClearentConnection alloc] initBluetoothSearch];
                                  [clearentVP3300 startConnection:connection];
2

Add the following feedback delegate to your code to help discover the card reader in Bluetooth settings.

- (void) bluetoothDevices:(NSArray *)bluetoothDevices;
3

Connect to the card reader when the feedback delegate receives a message from the iOS framework.

Last updated

Was this helpful?