mirror of
https://github.com/home-assistant/core.git
synced 2026-05-31 04:34:10 +01:00
ee2de6641f
Co-authored-by: Claude <noreply@anthropic.com>
13 lines
375 B
Python
13 lines
375 B
Python
"""Constants for the Marantz IR integration."""
|
|
|
|
from infrared_protocols.codes.marantz import models as marantz_models
|
|
|
|
from homeassistant.util import slugify
|
|
|
|
DOMAIN = "marantz_infrared"
|
|
CONF_INFRARED_EMITTER_ENTITY_ID = "infrared_emitter_entity_id"
|
|
|
|
MODELS: dict[str, marantz_models.MarantzModel] = {
|
|
slugify(model.name): model for model in marantz_models.ALL_MODELS
|
|
}
|