Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added comments on which are required CP bundle libraries #2698

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
18 changes: 17 additions & 1 deletion MEMENTO/Basic_Camera/code.py
@@ -1,7 +1,23 @@
# SPDX-FileCopyrightText: Copyright (c) 2023 john park for Adafruit Industries
#
# SPDX-License-Identifier: MIT
''' simple point-and-shoot camera example. No bells! Zero whistles! '''
"""
airspaced-nk5 marked this conversation as resolved.
Show resolved Hide resolved
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 adafruit_pycamera # pylint: disable=import-error
Expand Down