mirror of
https://github.com/esphome/esphome.git
synced 2024-12-02 11:44:13 +01:00
374 lines
11 KiB
Python
374 lines
11 KiB
Python
import esphome.codegen as cg
|
|
import esphome.config_validation as cv
|
|
from esphome import automation
|
|
from esphome.const import CONF_ID, CONF_TRIGGER_ID, CONF_FILE, CONF_DEVICE
|
|
from esphome.components import uart
|
|
|
|
DEPENDENCIES = ["uart"]
|
|
CODEOWNERS = ["@glmnet"]
|
|
|
|
dfplayer_ns = cg.esphome_ns.namespace("dfplayer")
|
|
DFPlayer = dfplayer_ns.class_("DFPlayer", cg.Component)
|
|
DFPlayerFinishedPlaybackTrigger = dfplayer_ns.class_(
|
|
"DFPlayerFinishedPlaybackTrigger", automation.Trigger.template()
|
|
)
|
|
DFPlayerIsPlayingCondition = dfplayer_ns.class_(
|
|
"DFPlayerIsPlayingCondition", automation.Condition
|
|
)
|
|
|
|
MULTI_CONF = True
|
|
CONF_FOLDER = "folder"
|
|
CONF_LOOP = "loop"
|
|
CONF_VOLUME = "volume"
|
|
CONF_EQ_PRESET = "eq_preset"
|
|
CONF_ON_FINISHED_PLAYBACK = "on_finished_playback"
|
|
|
|
EqPreset = dfplayer_ns.enum("EqPreset")
|
|
EQ_PRESET = {
|
|
"NORMAL": EqPreset.NORMAL,
|
|
"POP": EqPreset.POP,
|
|
"ROCK": EqPreset.ROCK,
|
|
"JAZZ": EqPreset.JAZZ,
|
|
"CLASSIC": EqPreset.CLASSIC,
|
|
"BASS": EqPreset.BASS,
|
|
}
|
|
Device = dfplayer_ns.enum("Device")
|
|
DEVICE = {
|
|
"USB": Device.USB,
|
|
"TF_CARD": Device.TF_CARD,
|
|
}
|
|
|
|
NextAction = dfplayer_ns.class_("NextAction", automation.Action)
|
|
PreviousAction = dfplayer_ns.class_("PreviousAction", automation.Action)
|
|
PlayMp3Action = dfplayer_ns.class_("PlayMp3Action", automation.Action)
|
|
PlayFileAction = dfplayer_ns.class_("PlayFileAction", automation.Action)
|
|
PlayFolderAction = dfplayer_ns.class_("PlayFolderAction", automation.Action)
|
|
SetVolumeAction = dfplayer_ns.class_("SetVolumeAction", automation.Action)
|
|
VolumeUpAction = dfplayer_ns.class_("VolumeUpAction", automation.Action)
|
|
VolumeDownAction = dfplayer_ns.class_("VolumeDownAction", automation.Action)
|
|
SetEqAction = dfplayer_ns.class_("SetEqAction", automation.Action)
|
|
SleepAction = dfplayer_ns.class_("SleepAction", automation.Action)
|
|
ResetAction = dfplayer_ns.class_("ResetAction", automation.Action)
|
|
StartAction = dfplayer_ns.class_("StartAction", automation.Action)
|
|
PauseAction = dfplayer_ns.class_("PauseAction", automation.Action)
|
|
StopAction = dfplayer_ns.class_("StopAction", automation.Action)
|
|
RandomAction = dfplayer_ns.class_("RandomAction", automation.Action)
|
|
SetDeviceAction = dfplayer_ns.class_("SetDeviceAction", automation.Action)
|
|
|
|
CONFIG_SCHEMA = cv.All(
|
|
cv.Schema(
|
|
{
|
|
cv.GenerateID(): cv.declare_id(DFPlayer),
|
|
cv.Optional(CONF_ON_FINISHED_PLAYBACK): automation.validate_automation(
|
|
{
|
|
cv.GenerateID(CONF_TRIGGER_ID): cv.declare_id(
|
|
DFPlayerFinishedPlaybackTrigger
|
|
),
|
|
}
|
|
),
|
|
}
|
|
).extend(uart.UART_DEVICE_SCHEMA)
|
|
)
|
|
FINAL_VALIDATE_SCHEMA = uart.final_validate_device_schema(
|
|
"dfplayer", baud_rate=9600, require_tx=True
|
|
)
|
|
|
|
|
|
async def to_code(config):
|
|
var = cg.new_Pvariable(config[CONF_ID])
|
|
await cg.register_component(var, config)
|
|
await uart.register_uart_device(var, config)
|
|
|
|
for conf in config.get(CONF_ON_FINISHED_PLAYBACK, []):
|
|
trigger = cg.new_Pvariable(conf[CONF_TRIGGER_ID], var)
|
|
await automation.build_automation(trigger, [], conf)
|
|
|
|
|
|
@automation.register_action(
|
|
"dfplayer.play_next",
|
|
NextAction,
|
|
cv.Schema(
|
|
{
|
|
cv.GenerateID(): cv.use_id(DFPlayer),
|
|
}
|
|
),
|
|
)
|
|
async def dfplayer_next_to_code(config, action_id, template_arg, args):
|
|
var = cg.new_Pvariable(action_id, template_arg)
|
|
await cg.register_parented(var, config[CONF_ID])
|
|
return var
|
|
|
|
|
|
@automation.register_action(
|
|
"dfplayer.play_previous",
|
|
PreviousAction,
|
|
cv.Schema(
|
|
{
|
|
cv.GenerateID(): cv.use_id(DFPlayer),
|
|
}
|
|
),
|
|
)
|
|
async def dfplayer_previous_to_code(config, action_id, template_arg, args):
|
|
var = cg.new_Pvariable(action_id, template_arg)
|
|
await cg.register_parented(var, config[CONF_ID])
|
|
return var
|
|
|
|
|
|
@automation.register_action(
|
|
"dfplayer.play_mp3",
|
|
PlayMp3Action,
|
|
cv.maybe_simple_value(
|
|
{
|
|
cv.GenerateID(): cv.use_id(DFPlayer),
|
|
cv.Required(CONF_FILE): cv.templatable(cv.int_),
|
|
},
|
|
key=CONF_FILE,
|
|
),
|
|
)
|
|
async def dfplayer_play_mp3_to_code(config, action_id, template_arg, args):
|
|
var = cg.new_Pvariable(action_id, template_arg)
|
|
await cg.register_parented(var, config[CONF_ID])
|
|
template_ = await cg.templatable(config[CONF_FILE], args, float)
|
|
cg.add(var.set_file(template_))
|
|
return var
|
|
|
|
|
|
@automation.register_action(
|
|
"dfplayer.play",
|
|
PlayFileAction,
|
|
cv.maybe_simple_value(
|
|
{
|
|
cv.GenerateID(): cv.use_id(DFPlayer),
|
|
cv.Required(CONF_FILE): cv.templatable(cv.int_),
|
|
cv.Optional(CONF_LOOP): cv.templatable(cv.boolean),
|
|
},
|
|
key=CONF_FILE,
|
|
),
|
|
)
|
|
async def dfplayer_play_to_code(config, action_id, template_arg, args):
|
|
var = cg.new_Pvariable(action_id, template_arg)
|
|
await cg.register_parented(var, config[CONF_ID])
|
|
template_ = await cg.templatable(config[CONF_FILE], args, float)
|
|
cg.add(var.set_file(template_))
|
|
if CONF_LOOP in config:
|
|
template_ = await cg.templatable(config[CONF_LOOP], args, float)
|
|
cg.add(var.set_loop(template_))
|
|
return var
|
|
|
|
|
|
@automation.register_action(
|
|
"dfplayer.play_folder",
|
|
PlayFolderAction,
|
|
cv.Schema(
|
|
{
|
|
cv.GenerateID(): cv.use_id(DFPlayer),
|
|
cv.Required(CONF_FOLDER): cv.templatable(cv.int_),
|
|
cv.Optional(CONF_FILE): cv.templatable(cv.int_),
|
|
cv.Optional(CONF_LOOP): cv.templatable(cv.boolean),
|
|
}
|
|
),
|
|
)
|
|
async def dfplayer_play_folder_to_code(config, action_id, template_arg, args):
|
|
var = cg.new_Pvariable(action_id, template_arg)
|
|
await cg.register_parented(var, config[CONF_ID])
|
|
template_ = await cg.templatable(config[CONF_FOLDER], args, float)
|
|
cg.add(var.set_folder(template_))
|
|
if CONF_FILE in config:
|
|
template_ = await cg.templatable(config[CONF_FILE], args, float)
|
|
cg.add(var.set_file(template_))
|
|
if CONF_LOOP in config:
|
|
template_ = await cg.templatable(config[CONF_LOOP], args, float)
|
|
cg.add(var.set_loop(template_))
|
|
return var
|
|
|
|
|
|
@automation.register_action(
|
|
"dfplayer.set_device",
|
|
SetDeviceAction,
|
|
cv.maybe_simple_value(
|
|
{
|
|
cv.GenerateID(): cv.use_id(DFPlayer),
|
|
cv.Required(CONF_DEVICE): cv.enum(DEVICE, upper=True),
|
|
},
|
|
key=CONF_DEVICE,
|
|
),
|
|
)
|
|
async def dfplayer_set_device_to_code(config, action_id, template_arg, args):
|
|
var = cg.new_Pvariable(action_id, template_arg)
|
|
await cg.register_parented(var, config[CONF_ID])
|
|
template_ = await cg.templatable(config[CONF_DEVICE], args, Device)
|
|
cg.add(var.set_device(template_))
|
|
return var
|
|
|
|
|
|
@automation.register_action(
|
|
"dfplayer.set_volume",
|
|
SetVolumeAction,
|
|
cv.maybe_simple_value(
|
|
{
|
|
cv.GenerateID(): cv.use_id(DFPlayer),
|
|
cv.Required(CONF_VOLUME): cv.templatable(cv.int_),
|
|
},
|
|
key=CONF_VOLUME,
|
|
),
|
|
)
|
|
async def dfplayer_set_volume_to_code(config, action_id, template_arg, args):
|
|
var = cg.new_Pvariable(action_id, template_arg)
|
|
await cg.register_parented(var, config[CONF_ID])
|
|
template_ = await cg.templatable(config[CONF_VOLUME], args, float)
|
|
cg.add(var.set_volume(template_))
|
|
return var
|
|
|
|
|
|
@automation.register_action(
|
|
"dfplayer.volume_up",
|
|
VolumeUpAction,
|
|
cv.Schema(
|
|
{
|
|
cv.GenerateID(): cv.use_id(DFPlayer),
|
|
}
|
|
),
|
|
)
|
|
async def dfplayer_volume_up_to_code(config, action_id, template_arg, args):
|
|
var = cg.new_Pvariable(action_id, template_arg)
|
|
await cg.register_parented(var, config[CONF_ID])
|
|
return var
|
|
|
|
|
|
@automation.register_action(
|
|
"dfplayer.volume_down",
|
|
VolumeDownAction,
|
|
cv.Schema(
|
|
{
|
|
cv.GenerateID(): cv.use_id(DFPlayer),
|
|
}
|
|
),
|
|
)
|
|
async def dfplayer_volume_down_to_code(config, action_id, template_arg, args):
|
|
var = cg.new_Pvariable(action_id, template_arg)
|
|
await cg.register_parented(var, config[CONF_ID])
|
|
return var
|
|
|
|
|
|
@automation.register_action(
|
|
"dfplayer.set_eq",
|
|
SetEqAction,
|
|
cv.maybe_simple_value(
|
|
{
|
|
cv.GenerateID(): cv.use_id(DFPlayer),
|
|
cv.Required(CONF_EQ_PRESET): cv.templatable(cv.enum(EQ_PRESET, upper=True)),
|
|
},
|
|
key=CONF_EQ_PRESET,
|
|
),
|
|
)
|
|
async def dfplayer_set_eq_to_code(config, action_id, template_arg, args):
|
|
var = cg.new_Pvariable(action_id, template_arg)
|
|
await cg.register_parented(var, config[CONF_ID])
|
|
template_ = await cg.templatable(config[CONF_EQ_PRESET], args, EqPreset)
|
|
cg.add(var.set_eq(template_))
|
|
return var
|
|
|
|
|
|
@automation.register_action(
|
|
"dfplayer.sleep",
|
|
SleepAction,
|
|
cv.Schema(
|
|
{
|
|
cv.GenerateID(): cv.use_id(DFPlayer),
|
|
}
|
|
),
|
|
)
|
|
async def dfplayer_sleep_to_code(config, action_id, template_arg, args):
|
|
var = cg.new_Pvariable(action_id, template_arg)
|
|
await cg.register_parented(var, config[CONF_ID])
|
|
return var
|
|
|
|
|
|
@automation.register_action(
|
|
"dfplayer.reset",
|
|
ResetAction,
|
|
cv.Schema(
|
|
{
|
|
cv.GenerateID(): cv.use_id(DFPlayer),
|
|
}
|
|
),
|
|
)
|
|
async def dfplayer_reset_to_code(config, action_id, template_arg, args):
|
|
var = cg.new_Pvariable(action_id, template_arg)
|
|
await cg.register_parented(var, config[CONF_ID])
|
|
return var
|
|
|
|
|
|
@automation.register_action(
|
|
"dfplayer.start",
|
|
StartAction,
|
|
cv.Schema(
|
|
{
|
|
cv.GenerateID(): cv.use_id(DFPlayer),
|
|
}
|
|
),
|
|
)
|
|
async def dfplayer_start_to_code(config, action_id, template_arg, args):
|
|
var = cg.new_Pvariable(action_id, template_arg)
|
|
await cg.register_parented(var, config[CONF_ID])
|
|
return var
|
|
|
|
|
|
@automation.register_action(
|
|
"dfplayer.pause",
|
|
PauseAction,
|
|
cv.Schema(
|
|
{
|
|
cv.GenerateID(): cv.use_id(DFPlayer),
|
|
}
|
|
),
|
|
)
|
|
async def dfplayer_pause_to_code(config, action_id, template_arg, args):
|
|
var = cg.new_Pvariable(action_id, template_arg)
|
|
await cg.register_parented(var, config[CONF_ID])
|
|
return var
|
|
|
|
|
|
@automation.register_action(
|
|
"dfplayer.stop",
|
|
StopAction,
|
|
cv.Schema(
|
|
{
|
|
cv.GenerateID(): cv.use_id(DFPlayer),
|
|
}
|
|
),
|
|
)
|
|
async def dfplayer_stop_to_code(config, action_id, template_arg, args):
|
|
var = cg.new_Pvariable(action_id, template_arg)
|
|
await cg.register_parented(var, config[CONF_ID])
|
|
return var
|
|
|
|
|
|
@automation.register_action(
|
|
"dfplayer.random",
|
|
RandomAction,
|
|
cv.Schema(
|
|
{
|
|
cv.GenerateID(): cv.use_id(DFPlayer),
|
|
}
|
|
),
|
|
)
|
|
async def dfplayer_random_to_code(config, action_id, template_arg, args):
|
|
var = cg.new_Pvariable(action_id, template_arg)
|
|
await cg.register_parented(var, config[CONF_ID])
|
|
return var
|
|
|
|
|
|
@automation.register_condition(
|
|
"dfplayer.is_playing",
|
|
DFPlayerIsPlayingCondition,
|
|
cv.Schema(
|
|
{
|
|
cv.GenerateID(): cv.use_id(DFPlayer),
|
|
}
|
|
),
|
|
)
|
|
async def dfplayer_is_playing_to_code(config, condition_id, template_arg, args):
|
|
var = cg.new_Pvariable(condition_id, template_arg)
|
|
await cg.register_parented(var, config[CONF_ID])
|
|
return var
|