diff --git a/WaveshareUARTFingerprintSensor/FingerprintSensor.cs b/WaveshareUARTFingerprintSensor/FingerprintSensor.cs index bc5276d..3c74006 100644 --- a/WaveshareUARTFingerprintSensor/FingerprintSensor.cs +++ b/WaveshareUARTFingerprintSensor/FingerprintSensor.cs @@ -121,7 +121,7 @@ namespace WaveshareUARTFingerprintSensor public bool TryGetUserCount(out ushort count) { - if (TrySendAndReceive(CommandType.QueryUserCount, 0, 0, 0, out var response)) + if (TrySendAndReceive(CommandType.QueryUserCount, 0, 0, 0, out var response, 1000)) { (byte countHigh, byte countLow, ResponseType responseType) = response;