File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 47
47
import digitalio
48
48
import audiopwmio
49
49
from gamepad import GamePad
50
- import adafruit_lsm6ds
50
+ import adafruit_lsm6ds . lsm6ds33
51
51
import neopixel
52
52
from adafruit_pybadger .pybadger_base import PyBadgerBase
53
53
@@ -69,7 +69,7 @@ def __init__(self):
69
69
i2c = board .I2C ()
70
70
71
71
if i2c is not None :
72
- self ._accelerometer = adafruit_lsm6ds .LSM6DS33 (i2c )
72
+ self ._accelerometer = adafruit_lsm6ds .lsm6ds33 . LSM6DS33 (i2c )
73
73
74
74
# NeoPixels
75
75
self ._neopixels = neopixel .NeoPixel (
Original file line number Diff line number Diff line change 1
1
"""Simpletest example using Adafruit PyPortal. Uses the touchscreen to advance between examples."""
2
2
import board
3
- from adafruit_pybadger import pybadger
4
3
import adafruit_touchscreen
4
+ from adafruit_pybadger import pybadger
5
5
6
6
# pylint: disable=invalid-name
7
7
You can’t perform that action at this time.
0 commit comments