# `Grizzly.ZWave.Commands.SceneActuatorConfSet`
[🔗](https://github.com/smartrent/grizzly/blob/v9.1.4/lib/grizzly/zwave/commands/scene_actuator_conf_set.ex#L1)

This command is used to associate the specified scene ID to the defined actuator settings.

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

  * `:override` - If false, the current actuator settings must be used as settings for the actual Scene ID (required)

  * `:level` - the target level to be set if override is true (required)

# `param`

```elixir
@type param() ::
  {:scene_id, boolean()}
  | {:dimming_duration,
     Grizzly.ZWave.CommandClasses.SceneActuatorConf.dimming_duration()}
  | {:override, boolean()}
  | {:level, Grizzly.ZWave.CommandClasses.SceneActuatorConf.level()}
```

---

*Consult [api-reference.md](api-reference.md) for complete listing*
