Skip to content

Commit

Permalink
Update pin.py
Browse files Browse the repository at this point in the history
  • Loading branch information
frank-pet authored Nov 16, 2024
1 parent df7475d commit bfa6ae2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/adafruit_blinka/microcontroller/bcm2711/pin.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,11 @@
#
# SPDX-License-Identifier: MIT
"""Broadcom BCM2711 pin names"""
import lgpio

# pylint: disable=unused-import
# importing CHIP to make the lgpio CHIP handle available
from adafruit_blinka.microcontroller.bcm283x.pin import Pin, CHIP
# pylint: enable=unused-import

D0 = Pin(0)
D1 = Pin(1)
Expand Down

0 comments on commit bfa6ae2

Please sign in to comment.