Skip to content

Commit

Permalink
Merge pull request #127 from makermelissa/main
Browse files Browse the repository at this point in the history
Bug fixes
  • Loading branch information
makermelissa committed Feb 8, 2024
2 parents 448a5d5 + 0a27485 commit 67549f4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion displayio/_display.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ def __init__(
# 100Hz looks decent and doesn't keep the CPU too busy
self._backlight = PWMOut(backlight_pin, frequency=100, duty_cycle=0)
self._backlight_type = BACKLIGHT_PWM
except ImportError:
except (ImportError, NotImplementedError):
# PWMOut not implemented on this platform
pass
if self._backlight_type is None:
Expand Down
1 change: 1 addition & 0 deletions displayio/_fourwire.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ def __init__(
if reset is not None:
self._reset = digitalio.DigitalInOut(reset)
self._reset.switch_to_output(value=True)
self.reset()
else:
self._reset = None
self._spi = spi_bus
Expand Down

0 comments on commit 67549f4

Please sign in to comment.