Initial version.

This commit is contained in:
Oliver Hauff 2021-05-13 17:25:46 +02:00
parent 6bab491a21
commit 193aaa1a56
17 changed files with 3142 additions and 0 deletions

View file

@ -0,0 +1,11 @@
using TINK.Model.Device;
namespace TINK.Services.BluetoothLock.BLE
{
public class LockItByScanServicePolling : LockItByScanServiceBase, ILocksService
{
public LockItByScanServicePolling(ICipher cipher) : base(
cipher,
(bleDevice, authInfo, adapter) => LockItPolling.Authenticate(bleDevice, authInfo, adapter, cipher)) { }
}
}