File tree Expand file tree Collapse file tree 1 file changed +16
-3
lines changed Expand file tree Collapse file tree 1 file changed +16
-3
lines changed Original file line number Diff line number Diff line change 1
1
# SPDX-FileCopyrightText: 2023 Jim McKeown
2
2
# SPDX-License-Identifier: MIT
3
3
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
+
4
20
import time
5
21
import numpy as np
6
22
from matplotlib import pyplot as plt
7
23
import serial
8
24
import adafruit_fingerprint
9
25
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
-
13
26
# led = DigitalInOut(board.D13)
14
27
# led.direction = Direction.OUTPUT
15
28
You can’t perform that action at this time.
0 commit comments