Packages

BACstack is a low-level Elixir implementation for the ASHRAE standard 135, BACnet - Building Automation and Controller network. In its current published state, v0.0.x, it can (only) act as a BACnet client for other BACnet devices.

Current section

Files

Jump to
bacstack lib bacnet protocol bvlc_result.ex
Raw

lib/bacnet/protocol/bvlc_result.ex

defmodule BACnet.Protocol.BvlcResult do
# TODO: Docs
@type t :: %__MODULE__{
result_code: BACnet.Protocol.Constants.bvlc_result_format()
}
@fields [:result_code]
@enforce_keys @fields
defstruct @fields
end