Example #1
0
 public override void MemePeripheralConnected(CoreBluetooth.CBPeripheral peripheral)
 {
     Connected?.Invoke(this, true);
 }
Example #2
0
 public override void MemePeripheralDisconnected(CoreBluetooth.CBPeripheral peripheral)
 {
     Disconnected?.Invoke(this, null);
 }
Example #3
0
 public override void MemePeripheralFound(CoreBluetooth.CBPeripheral peripheral, string address)
 {
     FoundPeripherals.Remove(address);
     FoundPeripherals.Add(address, peripheral);
     Found?.Invoke(this, address);
 }