Skip to content

Commit

Permalink
Merge pull request #9 from caternuson/iss1
Browse files Browse the repository at this point in the history
Fix horizontal flip in camera example
  • Loading branch information
jepler committed Dec 19, 2023
2 parents b54608f + b40e40d commit 17cae31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adafruit_pycamera/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ def make_debounced_expander_pin(pin_no):
self._camera_device = I2CDevice(self._i2c, self.camera.address)
# display.auto_refresh = False

self.camera.hmirror = True
self.camera.hmirror = False
self.camera.vflip = True

self._bigbuf = None
Expand Down

0 comments on commit 17cae31

Please sign in to comment.