Skip to content

Commit

Permalink
remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
DJDevon3 committed May 22, 2023
1 parent 352151a commit fcf077a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
1 change: 0 additions & 1 deletion examples/pca9685_calibration.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

import time
import board
import busio
from adafruit_pca9685 import PCA9685

# Create the I2C bus interface.
Expand Down
1 change: 0 additions & 1 deletion examples/pca9685_servo.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

import time
import board
import busio
from adafruit_motor import servo
from adafruit_pca9685 import PCA9685

Expand Down
7 changes: 3 additions & 4 deletions examples/pca9685_simpletest.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
# SPDX-FileCopyrightText: 2021 ladyada for Adafruit Industries
# SPDX-License-Identifier: MIT

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

import time
import board
import busio
from adafruit_pca9685 import PCA9685

# Create the I2C bus interface.
Expand Down

0 comments on commit fcf077a

Please sign in to comment.