BACnetActionList

<< Clique para Mostrar o Sumário >>

 

BACnetActionList

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

Esquema XML

<xs:complexType name="BACnetActionList">
  <xs:sequence>
    <xs:element name="Action" type="SequenceOfBACnetActionCommand" />
  </xs:sequence>
</xs:complexType>

Exemplos

Exemplo 1:

<BACnetActionList>
  <Action />
</BACnetActionList>

Exemplo 2:

<BACnetActionList>
  <Action>
    <BACnetActionCommand>
      <DeviceIdentifier>device-501</DeviceIdentifier>
      <ObjectIdentifier>device-502</ObjectIdentifier>
      <PropertyIdentifier>action</PropertyIdentifier>
      <PropertyArrayIndex>1237</PropertyArrayIndex>
      <PropertyValue>
        <Boolean>true</Boolean>
      </PropertyValue>
      <Priority>1238</Priority>
      <PostDelay>1239</PostDelay>
      <QuitOnFailure>true</QuitOnFailure>
      <WriteSuccessful>true</WriteSuccessful>
    </BACnetActionCommand>
    <BACnetActionCommand>
      <DeviceIdentifier>device-507</DeviceIdentifier>
      <ObjectIdentifier>device-508</ObjectIdentifier>
      <PropertyIdentifier>all</PropertyIdentifier>
      <PropertyArrayIndex>1243</PropertyArrayIndex>
      <PropertyValue>
        <Boolean>true</Boolean>
      </PropertyValue>
      <Priority>1244</Priority>
      <PostDelay>1245</PostDelay>
      <QuitOnFailure>true</QuitOnFailure>
      <WriteSuccessful>true</WriteSuccessful>
    </BACnetActionCommand>
    <BACnetActionCommand>
      <DeviceIdentifier>device-513</DeviceIdentifier>
      <ObjectIdentifier>device-514</ObjectIdentifier>
      <PropertyIdentifier>bias</PropertyIdentifier>
      <PropertyArrayIndex>1249</PropertyArrayIndex>
      <PropertyValue>
        <Boolean>true</Boolean>
      </PropertyValue>
      <Priority>1250</Priority>
      <PostDelay>1251</PostDelay>
      <QuitOnFailure>true</QuitOnFailure>
      <WriteSuccessful>true</WriteSuccessful>
    </BACnetActionCommand>
  </Action>
</BACnetActionList>

Esta página foi útil?