ship-controller/__init__.py
2025-06-30 01:52:10 +02:00

10 lines
309 B
Python

"""
MIDI-to-Hue package.
Allows controlling Philips Hue lights with MIDI controllers.
"""
from .config import ConfigManager
from .hue_controller import HueController, ThrottledUpdater
from .midi_controller import MidiController, DeviceMappingManager
from .mapper import MidiToHueMapper
__version__ = '1.0.0'