BACnetLightingCommand

<< Clique para Mostrar o Sumário >>

 

BACnetLightingCommand

Esta representação de dados complexos via XML é utilizada pelos seguintes objetos/propriedades:

channel.presentValue

timer.stateChangeValues

Esquema XML

<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns="http://www.elipse.com.br/drivers/BACnet" xmlns:mstns="http://www.elipse.com.br/drivers/BACnet" elementFormDefault="qualified" targetNamespace="http://www.elipse.com.br/drivers/BACnet" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:complexType name="BACnetLightingCommand">
    <xs:sequence>
      <xs:element name="Operation" type="BACnetLightingOperation" />
      <xs:element minOccurs="0" name="TargetLevel" type="REAL" />
      <xs:element minOccurs="0" name="RampRate" type="REAL" />
      <xs:element minOccurs="0" name="StepIncrement" type="REAL" />
      <xs:element minOccurs="0" name="FadeTime" type="Unsigned" />
      <xs:element minOccurs="0" name="Priority" type="Unsigned" />
    </xs:sequence>
  </xs:complexType>
  <xs:element name="Value" type="BACnetLightingCommand" />
</xs:schema>

Exemplos

Exemplo 1:

<?xml version="1.0" encoding="utf-8" ?>
<Value xmlns="http://www.elipse.com.br/drivers/BACnet">
  <BACnetLightingCommand>
    <Operation>none</Operation>
    <TargetLevel>1235.567749</TargetLevel>
    <RampRate>1236.567749</RampRate>
    <StepIncrement>1237.567749</StepIncrement>
    <FadeTime>1238</FadeTime>
    <Priority>1239</Priority>
  </BACnetLightingCommand>
</Value>

Exemplo 2:

<?xml version="1.0" encoding="utf-8" ?>
<Value xmlns="http://www.elipse.com.br/drivers/BACnet">
  <BACnetLightingCommand>
    <Operation>stepOff</Operation>
  </BACnetLightingCommand>
</Value>

Esta página foi útil?