Skip to content

Commit fcf077a

Browse files
committed
remove unused imports
1 parent 352151a commit fcf077a

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

examples/pca9685_calibration.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88

99
import time
1010
import board
11-
import busio
1211
from adafruit_pca9685 import PCA9685
1312

1413
# Create the I2C bus interface.

examples/pca9685_servo.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
import time
55
import board
6-
import busio
76
from adafruit_motor import servo
87
from adafruit_pca9685 import PCA9685
98

examples/pca9685_simpletest.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
# SPDX-FileCopyrightText: 2021 ladyada for Adafruit Industries
22
# SPDX-License-Identifier: MIT
33

4-
# This simple test outputs a 50% duty cycle PWM single on the 0th channel. Connect an LED and
5-
# resistor in series to the pin to visualize duty cycle changes and its impact on brightness.
4+
# Outputs a 50% duty cycle PWM single on the 0th channel.
5+
# Connect an LED and resistor in series to the pin
6+
# to visualize duty cycle changes and its impact on brightness.
67

7-
import time
88
import board
9-
import busio
109
from adafruit_pca9685 import PCA9685
1110

1211
# Create the I2C bus interface.

0 commit comments

Comments
 (0)