BACnetSpecialEvent

<< Click to Display Table of Contents >>

 

BACnetSpecialEvent

This XML representation of complex data is used internally by other XMLs supported by the driver.

XML Schema

<xs:complexType name="BACnetSpecialEvent">
  <xs:sequence>
    <xs:element name="Period" type="BACnetSpecialEvent_Period" />
    <xs:element name="ListOfTimeValues" type="SequenceOfBACnetTimeValue" />
    <xs:element name="EventPriority" type="Unsigned" />
  </xs:sequence>
</xs:complexType>

Examples

Example 1:

<BACnetSpecialEvent>
  <Period>
    <CalendarEntry>
      <Date>2017-12-20</Date>
    </CalendarEntry>
  </Period>
  <ListOfTimeValues />
  <EventPriority>1235</EventPriority>
</BACnetSpecialEvent>

Example 2:

<BACnetSpecialEvent>
  <Period>
    <CalendarEntry>
      <Date>2019-12-20</Date>
    </CalendarEntry>
  </Period>
  <ListOfTimeValues>
    <BACnetTimeValue>
      <Time>22:39:15.980</Time>
      <Value>
        <Boolean>true</Boolean>
      </Value>
    </BACnetTimeValue>
    <BACnetTimeValue>
      <Time>22:39:15.980</Time>
      <Value>
        <Boolean>true</Boolean>
      </Value>
    </BACnetTimeValue>
    <BACnetTimeValue>
      <Time>22:39:15.980</Time>
      <Value>
        <Boolean>true</Boolean>
      </Value>
    </BACnetTimeValue>
  </ListOfTimeValues>
  <EventPriority>1240</EventPriority>
</BACnetSpecialEvent>

Was this page useful?