Skip to content

Commit

Permalink
Update fingerprint_picturetest.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jim-mckeown authored May 4, 2023
1 parent 601fd8a commit b881b13
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions examples/fingerprint_picturetest.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,28 @@
# SPDX-FileCopyrightText: 2023 Jim McKeown
# SPDX-License-Identifier: MIT

"""
This example shows the basic functionality to:
Show the devices fingerprint slots that have fingerprints enrolled.
Enroll a fingerprint in an existing or new fingerprint slot.
Try to find a fingerprint in the existing list of enrolled fingerprints.
Delete an enrolled fingerprint.
View the image of a fingerprint.
Preview the image of a fingerprint and then try to find the fingerprint
in the existing list of enrolled fingerprints.
Please note that this example only works on single board computers
with the use of Blinka.
This example is based on fingerprint_simpletest.py
"""

import time
import numpy as np
from matplotlib import pyplot as plt
import serial
import adafruit_fingerprint

"""Added 'View Print' and 'Preview and Find Print' to fingerprint_simpletest.py"""
"""This example only works on single board computers with the use of Blinka"""

# led = DigitalInOut(board.D13)
# led.direction = Direction.OUTPUT

Expand Down

0 comments on commit b881b13

Please sign in to comment.