BACnet.Protocol.Services.TimeSynchronization (bacstack v0.0.1)
View SourceThis module represents the BACnet Time Synchronization service.
The Time Synchronization service is used to send the correct local date and time onto the BACnet network or to a single recipient.
Service Description (ASHRAE 135):
The TimeSynchronization service is used by a requesting BACnet-user to notify a remote device of the correct current time. This service may be broadcast, multicast, or addressed to a single recipient. Its purpose is to notify recipients of the correct current time so that devices may synchronize their internal clocks with one another.
Summary
Functions
Converts the given Unconfirmed Service Request into an TimeSynchronization Service.
Get the service name atom.
Whether the service is of type confirmed or unconfirmed.
Get the Unconfirmed Service request for the given TimeSynchronization Service.
Types
@type t() :: %BACnet.Protocol.Services.TimeSynchronization{ date: BACnet.Protocol.BACnetDate.t(), time: BACnet.Protocol.BACnetTime.t() }
Functions
@spec from_apdu(BACnet.Protocol.APDU.UnconfirmedServiceRequest.t()) :: {:ok, t()} | {:error, term()}
Converts the given Unconfirmed Service Request into an TimeSynchronization Service.
See the BACnet.Protocol.Services.Protocol
function documentation for more information.
@spec get_name() :: atom()
Get the service name atom.
@spec is_confirmed() :: false
Whether the service is of type confirmed or unconfirmed.
@spec to_apdu(t(), Keyword.t()) :: {:ok, BACnet.Protocol.APDU.UnconfirmedServiceRequest.t()} | {:error, term()}
Get the Unconfirmed Service request for the given TimeSynchronization Service.
See the BACnet.Protocol.Services.Protocol
function documentation for more information.