1
0
mirror of https://github.com/home-assistant/core.git synced 2026-05-31 04:34:10 +01:00
Files
2026-05-20 08:42:11 +02:00

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
}