Initialize
class DcentManager
provides functions for using D'CENT Biometric Wallet.
First, you must initialize DcentManager. D'CENT Biometric will be connected with your iOS application using BLE. Your application implements DcentBLEManagerDelegate protocol for receiving BLE connect/disconnect event.
Call func delegate(delegate:DcentBLEManagerDelegate)
function for register delegate implements DcentBLEManagerDelegate protocol.
DcentManager provides(for ble connection):
public func searchDeviceStart()
public func searchDeviceStop()
public func getDeviceList() -> BleDeviceInfo
public func connectDevice(to device: BleDeviceInfo)
public func disconnectDevice(from device: BleDeviceInfo)
public func connectedDevice() -> BleDeviceInfo?
ios app developers can connect DCENT dongle through bluetooth using these functions. ( Please refer to the sample application to learn more details )
Last updated