View Source KNXex.Frames.RoutingIndicationFrame (knxex v0.1.0)

KNX Routing Indication Frame.

This frame does have a frame encoder implementation.

The payload has the following type for a specific message code:

Link to this section Summary

Types

KNX message codes.

t()

Represents a KNX Routing Indication frame.

Link to this section Types

@type message_code() ::
  :raw_request
  | :data_request
  | :poll_data_request
  | :poll_data_connection
  | :data_indicator
  | :busmon_indicator
  | :raw_indicator
  | :data_connection
  | :raw_connection
  | :data_connection_request
  | :data_individual_request
  | :data_connection_indicator
  | :data_individual_indicator
  | :reset_indicator
  | :reset_request
  | :prop_write_connection
  | :prop_write_request
  | :prop_info_indicator
  | :func_prop_com_request
  | :func_prop_state_read_request
  | :func_prop_com_connection
  | :prop_read_connection
  | :prop_read_request

KNX message codes.

@type t() :: %KNXex.Frames.RoutingIndicationFrame{
  additional_info: binary(),
  message_code: message_code(),
  payload:
    KNXex.Frames.RoutingIndicationFrame.Data.t()
    | KNXex.Frames.RoutingIndicationFrame.Raw.t()
}

Represents a KNX Routing Indication frame.