Skip to content

Commit b881b13

Browse files
authored
Update fingerprint_picturetest.py
1 parent 601fd8a commit b881b13

File tree

1 file changed

+16
-3
lines changed

1 file changed

+16
-3
lines changed

examples/fingerprint_picturetest.py

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,28 @@
11
# SPDX-FileCopyrightText: 2023 Jim McKeown
22
# SPDX-License-Identifier: MIT
33

4+
"""
5+
This example shows the basic functionality to:
6+
Show the devices fingerprint slots that have fingerprints enrolled.
7+
Enroll a fingerprint in an existing or new fingerprint slot.
8+
Try to find a fingerprint in the existing list of enrolled fingerprints.
9+
Delete an enrolled fingerprint.
10+
View the image of a fingerprint.
11+
Preview the image of a fingerprint and then try to find the fingerprint
12+
in the existing list of enrolled fingerprints.
13+
14+
Please note that this example only works on single board computers
15+
with the use of Blinka.
16+
17+
This example is based on fingerprint_simpletest.py
18+
"""
19+
420
import time
521
import numpy as np
622
from matplotlib import pyplot as plt
723
import serial
824
import adafruit_fingerprint
925

10-
"""Added 'View Print' and 'Preview and Find Print' to fingerprint_simpletest.py"""
11-
"""This example only works on single board computers with the use of Blinka"""
12-
1326
# led = DigitalInOut(board.D13)
1427
# led.direction = Direction.OUTPUT
1528

0 commit comments

Comments
 (0)