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 72268df commit a6583c1Copy full SHA for a6583c1
adafruit_l3gd20.py
@@ -30,20 +30,12 @@
30
"""
31
32
# imports
33
-
34
-__version__ = "0.0.0-auto.0"
35
-__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_l3gd20.git"
36
37
38
from math import radians
+from struct import unpack
+
39
from micropython import const
40
from adafruit_register.i2c_struct import Struct
41
42
-try:
43
- from struct import unpack
44
-except ImportError:
45
- from ustruct import unpack
46
47
__version__ = "0.0.0-auto.0"
48
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_L3GD20.git"
49
0 commit comments