Skip to content
Open
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ dependencies = [
cli = [
"rich>=13.0.0",
]
lan = [
"zeroconf>=0.132.0",
]
nrf-ota = [
"nrf-ota>=0.4.0",
]
Expand Down
6 changes: 4 additions & 2 deletions src/opendisplay/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

from .battery import voltage_to_percent
from .device import OpenDisplayDevice, prepare_image
from .discovery import discover_devices, discover_devices_with_adv
from .discovery import discover_devices, discover_devices_with_adv, discover_lan_devices
from .exceptions import (
AuthenticationError,
AuthenticationFailedError,
Expand Down Expand Up @@ -77,7 +77,7 @@
from .models.firmware import firmware_ota_asset, firmware_release_repo
from .models.led_flash import LedFlashConfig, LedFlashStep
from .ota import find_nrf_dfu_device, perform_nrf_dfu, perform_silabs_ota
from .protocol import MANUFACTURER_ID, SERVICE_UUID
from .protocol import LAN_CHUNK_SIZE, MANUFACTURER_ID, SERVICE_UUID

__version__ = "0.1.0"

Expand All @@ -86,6 +86,7 @@
"OpenDisplayDevice",
"discover_devices",
"discover_devices_with_adv",
"discover_lan_devices",
"prepare_image",
# Exceptions
"OpenDisplayError",
Expand Down Expand Up @@ -167,4 +168,5 @@
# Constants
"SERVICE_UUID",
"MANUFACTURER_ID",
"LAN_CHUNK_SIZE",
]
Loading
Loading