BACnetSpecialEvent

<< Clique para Mostrar o Sumário >>

 

BACnetSpecialEvent

Esta representação de dados complexos via XML é utilizada internamente em outros XMLs suportados pelo driver.

Esquema XML

<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>

Exemplos

Exemplo 1:

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

Exemplo 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>

Esta página foi útil?