Skip to content

Commit

Permalink
Merge pull request #785 from makermelissa/main
Browse files Browse the repository at this point in the history
Show NotImplementedError for pwmio on the Pi 5 for now
  • Loading branch information
makermelissa committed Feb 8, 2024
2 parents 02c45d6 + 0109a48 commit f8b243c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pwmio.py
Expand Up @@ -16,7 +16,7 @@

# pylint: disable=unused-import

if detector.board.any_raspberry_pi:
if detector.board.any_raspberry_pi and not detector.board.RASPBERRY_PI_5:
from adafruit_blinka.microcontroller.bcm283x.pwmio.PWMOut import PWMOut
elif detector.board.any_coral_board:
from adafruit_blinka.microcontroller.generic_linux.sysfs_pwmout import PWMOut
Expand Down

0 comments on commit f8b243c

Please sign in to comment.