This commit is contained in:
airspaced-nk5 2025-08-19 14:14:36 +07:00 committed by GitHub
commit 4a22f9cd91
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,7 +1,23 @@
# SPDX-FileCopyrightText: Copyright (c) 2023 john park for Adafruit Industries # SPDX-FileCopyrightText: Copyright (c) 2023 john park for Adafruit Industries
# #
# SPDX-License-Identifier: MIT # SPDX-License-Identifier: MIT
''' simple point-and-shoot camera example. No bells! Zero whistles! ''' """
simple point-and-shoot camera example. No bells! Zero whistles!
Requires libraries from the Adafruit CircuitPython Library Bundle.
Download the bundle from circuitpython.org/libraries and copy the
following files/folders to your CIRCUITPY/lib folder:
* adafruit_display_text
* adafruit_register
* adafruit_aw9523.mpy
* adafruit_debouncer.mpy
* adafruit_lis3dh.mpy
* adafruit_ticks.mpy
* neopixel.mpy
Once the libraries are copied, save this file as code.py to your CIRCUITPY
drive to run it.
"""
import time import time
import adafruit_pycamera # pylint: disable=import-error import adafruit_pycamera # pylint: disable=import-error