mirror of
https://github.com/arendst/Tasmota.git
synced 2025-07-29 05:36:39 +00:00
Fix R503 fingerprint reader support
This commit is contained in:
parent
5f0f594347
commit
2c822f948d
@ -23,7 +23,6 @@
|
||||
*
|
||||
* Currently supports:
|
||||
* - English only as there are no tanslations supported
|
||||
* - AS608 only as R503 fails to read stored fingerprints
|
||||
\*********************************************************************************************/
|
||||
|
||||
#define XSNS_79 79
|
||||
@ -130,7 +129,8 @@ void As608Loop(void) {
|
||||
p = As608Finger->image2Tz(); // Convert image
|
||||
if (p != FINGERPRINT_OK) { return; }
|
||||
|
||||
p = As608Finger->fingerFastSearch(); // Match found
|
||||
// p = As608Finger->fingerFastSearch(); // Match found - fails on R503
|
||||
p = As608Finger->fingerSearch(); // Match found
|
||||
if (p != FINGERPRINT_OK) {
|
||||
// AddLog_P(LOG_LEVEL_DEBUG, PSTR("AS6: No matching finger"));
|
||||
return;
|
||||
|
Loading…
x
Reference in New Issue
Block a user