View Source Grizzly.ZWave.Commands.ConfigurationBulkReport (grizzly v7.4.1)

This command is used to advertise the actual value of one or more advertised 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)

  • :reports_to_follow - This field gives the number of reports left before all requested configuration

                       parameters values have been transferred (required)

Summary

Types

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