defmodule Grizzly.ZWave.Commands.SceneActuatorConfReport do
@moduledoc """
This command is used to advertise the settings associated to a scene identifier.
Params:
* `:scene_id` - a scene id (required)
* `:dimming_duration` - the time it must take to reach the target level associated to the actual Scene ID (required - ignored if not supported)
:instantly | [seconds: 1..127] | [minutes: 1..126] | :factory_settings
* `:level` - the target level to be set if override is true (required)
"""
@behaviour Grizzly.ZWave.Command
alias Grizzly.ZWave.{Command, DecodeError}
alias Grizzly.ZWave.CommandClasses.SceneActuatorConf
@type param ::
{:scene_id, boolean}
| {:dimming_duration, SceneActuatorConf.dimming_duration()}
| {:level, SceneActuatorConf.level()}
@impl true
@spec new([param()]) :: {:ok, Command.t()}
def new(params) do
command = %Command{
name: :scene_actuator_conf_report,
command_byte: 0x03,
command_class: SceneActuatorConf,
params: params,
impl: __MODULE__
}
{:ok, command}
end
@impl true
@spec encode_params(Command.t()) :: binary()
def encode_params(command) do
scene_id = Command.param!(command, :scene_id)
dimming_duration_byte =
Command.param!(command, :dimming_duration) |> SceneActuatorConf.dimming_duration_to_byte()
level_byte = Command.param!(command, :level) |> SceneActuatorConf.level_to_byte()
<<scene_id, level_byte, dimming_duration_byte>>
end
@impl true
@spec decode_params(binary()) :: {:ok, [param()]} | {:error, DecodeError.t()}
def decode_params(<<scene_id, level_byte, dimming_duration_byte>>) do
with {:ok, dimming_duration} <-
SceneActuatorConf.dimming_duration_from_byte(dimming_duration_byte),
{:ok, level} <- SceneActuatorConf.level_from_byte(level_byte) do
{:ok,
[
scene_id: scene_id,
dimming_duration: dimming_duration,
level: level
]}
else
{:error, %DecodeError{} = decode_error} ->
{:error, %DecodeError{decode_error | command: :scene_actuator_conf_report}}
end
end
end