Search found 1 match
- Tue Mar 21, 2023 6:07 am
- Forum: Hardware
- Topic: esp32 cam with fingerprint reader
- Replies: 5
- Views: 6525
Re: esp32 cam with fingerprint reader
I finally found a way to use your fingerprint sensor using this library : Adafruit_Fingerprint.h I tried this : #include <Adafruit_Fingerprint.h> #include <HardwareSerial.h> HardwareSerial mySerial(0); Adafruit_Fingerprint finger = Adafruit_Fingerprint(&mySerial); I solved it with this code. :D :D a...