Skip to content

displayio api updates #23

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 29, 2025
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
5 changes: 3 additions & 2 deletions adafruit_dash_display.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
try:
from typing import Any, Callable, Optional, Tuple

import busdisplay
from adafruit_io.adafruit_io import IO_MQTT
from digitalio import DigitalInOut
except ImportError:
Expand Down Expand Up @@ -156,14 +157,14 @@ class Hub:
"""
Object that lets you make an IOT dashboard

:param displayio.Display display: The display for the dashboard.
:param busdisplay.BusDisplay display: The display for the dashboard.
:param IO_MQTT io_mqtt: MQTT communications object.
:param Tuple[DigitalInOut, ...] nav: The navigation pushbuttons.
"""

def __init__(
self,
display: displayio.Display,
display: busdisplay.BusDisplay,
io_mqtt: IO_MQTT,
nav: Tuple[DigitalInOut, ...],
):
Expand Down