View Source Grizzly.ZWave.Commands.BasicReport (grizzly v8.0.0)

This module implements the BASIC_REPORT command of the COMMAND_CLASS_BASIC command class

Params:

  • :value - the current value (:on or :off or :unknown)
  • :target_value - the target value (:on or :off or :unknown) - v2
  • :duration - the time in seconds needed to reach the Target Value at the actual transition rate - v2

Summary

Types

@type duration() :: non_neg_integer() | :unknown
@type param() ::
  {:value, value()} | {:target_value, value()} | {:duration, duration()}
@type value() :: :on | :off | :unknown