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 79516d6 commit 04cc5c9Copy full SHA for 04cc5c9
adafruit_featherwing/joy_featherwing.py
@@ -31,7 +31,7 @@
31
__version__ = "0.0.0-auto.0"
32
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_FeatherWing.git"
33
34
-import adafruit_seesaw
+import adafruit_seesaw.seesaw
35
from adafruit_featherwing import shared
36
from micropython import const
37
@@ -47,7 +47,7 @@ class JoyFeatherWing:
47
48
Automatically uses the feather's I2C bus."""
49
def __init__(self):
50
- self._seesaw = adafruit_seesaw.Seesaw(shared.I2C_BUS)
+ self._seesaw = adafruit_seesaw.seesaw.Seesaw(shared.I2C_BUS)
51
self._seesaw.pin_mode_bulk(BUTTON_A | BUTTON_B | BUTTON_Y | BUTTON_X | BUTTON_SELECT,
52
self._seesaw.INPUT_PULLUP)
53
0 commit comments