View Source Grizzly.ZWave.Commands.ConfigurationBulkSet (grizzly v8.0.1)

This command is used to set the value of one or more configuration parameters.

Params:

  • :default - This field is used to specify if the default value is to be restored for the specified configuration

             parameters. Use carefully: Some devices will incorrectly reset ALL configuration values to default. (required)
  • :size - This field is used to specify the number of bytes (1, 2 or 4) of the parameter values (required)

  • :handshake - This field is used to indicate if a Configuration Bulk Report Command is to be returned when the

               specified configuration parameters have been stored in non-volatile memory. (required)
  • :offset - This field is used to specify the first parameter in a range of one or more parameters. (required)

  • :values - These fields carry the values -of the same size)- to be assigned. (required)

Summary

Types

@type param() ::
  {:default, boolean()}
  | {:size, 1 | 2 | 4}
  | {:handshake, boolean()}
  | {:offset, non_neg_integer()}
  | {:values, [integer()]}