We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67bf7f1 commit 414964bCopy full SHA for 414964b
drv8830/__init__.py
@@ -1,7 +1,6 @@
1
-from i2cdevice import Device, Register, BitField
+from i2cdevice import BitField, Device, Register
2
from i2cdevice.adapter import Adapter, LookupAdapter
3
4
-
5
__version__ = '0.0.1'
6
7
I2C_ADDR1 = 0x60 # Default, both select jumpers bridged (not cut)
examples/two-motors.py
@@ -1,6 +1,6 @@
import time
-from drv8830 import DRV8830, I2C_ADDR1, I2C_ADDR2
+from drv8830 import DRV8830, I2C_ADDR1, I2C_ADDR2
left = DRV8830(I2C_ADDR1)
right = DRV8830(I2C_ADDR2)
0 commit comments