Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 2 additions & 10 deletions adafruit_l3gd20.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,20 +30,12 @@
"""

# imports

__version__ = "0.0.0-auto.0"
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_l3gd20.git"


from math import radians
from struct import unpack

from micropython import const
from adafruit_register.i2c_struct import Struct

try:
from struct import unpack
except ImportError:
from ustruct import unpack

__version__ = "0.0.0-auto.0"
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_L3GD20.git"

Expand Down