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
4 changes: 2 additions & 2 deletions adafruit_featherwing/joy_featherwing.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
__version__ = "0.0.0-auto.0"
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_FeatherWing.git"

import adafruit_seesaw
import adafruit_seesaw.seesaw
from adafruit_featherwing import shared
from micropython import const

Expand All @@ -47,7 +47,7 @@ class JoyFeatherWing:

Automatically uses the feather's I2C bus."""
def __init__(self):
self._seesaw = adafruit_seesaw.Seesaw(shared.I2C_BUS)
self._seesaw = adafruit_seesaw.seesaw.Seesaw(shared.I2C_BUS)
self._seesaw.pin_mode_bulk(BUTTON_A | BUTTON_B | BUTTON_Y | BUTTON_X | BUTTON_SELECT,
self._seesaw.INPUT_PULLUP)

Expand Down