grizzly v0.8.5 Grizzly.CommandClass.ManufacturerSpecific.DeviceSpecificGet View Source

Command module for working the ManufacturerSpecific command class DEVICE_SPECIFIC_GET command

Command Options:

  • :seq_number - the sequence number used by the Z/IP packet
  • :retries - the number of attempts to send the command (default 2)
  • :info - the type of device id

Link to this section Summary

Link to this section Types

Link to this type

t() View Source
t() :: %Grizzly.CommandClass.ManufacturerSpecific.DeviceSpecificGet{
  device_id_type: term(),
  retries: term(),
  seq_number: term()
}

Link to this section Functions

Link to this function

encode(command) View Source
encode(t()) :: {:ok, binary()} | {:error, Grizzly.Command.EncodeError.t()}

Callback implementation for Grizzly.Command.encode/1.

Link to this function

handle_response(command, packet) View Source
handle_response(t(), Grizzly.Packet.t()) ::
  {:continue, t()}
  | {:done, {:error, :nack_response}}
  | {:done, Grizzly.CommandClass.ManufacturerSpecific.device_specific_report()}
  | {:retry, t()}
  | {:queued, t()}

Callback implementation for Grizzly.Command.handle_response/2.

Link to this function

init(opts) View Source
init([opt()]) :: {:ok, t()}

Callback implementation for Grizzly.Command.init/1.