10 lines
309 B
Python
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'
|