Skip to content

Commit 1679bd8

Browse files
committed
Revert "Changed the default address from0x60 to 0x40"
This reverts commit c227c10.
1 parent c227c10 commit 1679bd8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

adafruit_pca9685/motor.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66

77
class DCMotors:
8-
def __init__(self, i2c, address=0x40, freq=1600):
8+
def __init__(self, i2c, address=0x60, freq=1600):
99
self.pca9685 = pca9685.PCA9685(i2c, address)
1010
self.pca9685.freq(freq)
1111

adafruit_pca9685/stepper.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ def onestep(self, direction, style):
161161

162162

163163
class Steppers:
164-
def __init__(self, i2c, address=0x40, freq=1600):
164+
def __init__(self, i2c, address=0x60, freq=1600):
165165
self.pca9685 = pca9685.PCA9685(i2c, address)
166166
self.pca9685.freq(freq)
167167

0 commit comments

Comments
 (0)