- New display service with DDC/CI brightness and power control via screen_brightness_control and monitorcontrol - New /api/display/* endpoints (monitors, brightness, power) - Display tab in WebUI with per-monitor brightness sliders and power toggle - EDID resolution parsing to distinguish same-name monitors - Throttled brightness slider (50ms) matching volume control pattern Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
12 lines
477 B
Python
12 lines
477 B
Python
"""API route modules."""
|
|
|
|
from .audio import router as audio_router
|
|
from .browser import router as browser_router
|
|
from .callbacks import router as callbacks_router
|
|
from .display import router as display_router
|
|
from .health import router as health_router
|
|
from .media import router as media_router
|
|
from .scripts import router as scripts_router
|
|
|
|
__all__ = ["audio_router", "browser_router", "callbacks_router", "display_router", "health_router", "media_router", "scripts_router"]
|