Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: adafruit/Adafruit_CircuitPython_PyCamera
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.0.5
Choose a base ref
...
head repository: adafruit/Adafruit_CircuitPython_PyCamera
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0.0.6
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Dec 20, 2023

  1. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    jepler Jeff Epler
    Copy the full SHA
    f368cc2 View commit details
  2. Merge pull request #12 from adafruit/speaker-mute

    mute needs to be output, or tone does nothing
    jepler authored Dec 20, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    fa65735 View commit details
Showing with 1 addition and 1 deletion.
  1. +1 −1 adafruit_pycamera/__init__.py
2 changes: 1 addition & 1 deletion adafruit_pycamera/__init__.py
Original file line number Diff line number Diff line change
@@ -258,7 +258,7 @@ def make_debounced_expander_pin(pin_no):

self._card_power = make_expander_output(_AW_SDPWR, True)

self.mute = make_expander_input(_AW_MUTE)
self.mute = make_expander_output(_AW_MUTE, False)

self.sdcard = None
try: