Exemplo n.º 1
0
 public Api21BleScanCallback(Adapter adapter)
 {
     _adapter = adapter;
 }
Exemplo n.º 2
0
 public GattCallback(Adapter adapter)
 {
     _adapter = adapter;
 }
Exemplo n.º 3
0
 public GattCallback(Adapter adapter, Device device)
 {
     _adapter = adapter;
     _device  = device;
 }
Exemplo n.º 4
0
 public Device(Adapter adapter, BluetoothDevice nativeDevice, BluetoothGatt gatt, IGattCallback gattCallback, int rssi, byte[] advertisementData = null) : base(adapter)
 {
     Update(nativeDevice, gatt, gattCallback);
     Rssi = rssi;
     AdvertisementRecords = ParseScanRecord(advertisementData);
 }