forked from csa-iot/data-model
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TemperatureMeasurement.xml
38 lines (38 loc) · 1.74 KB
/
TemperatureMeasurement.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?xml version="1.0"?>
<!--
Zigbee Alliance owns the copyright to the text and content displayed or
included in this document (including in PDF, XML files and other formats) in
all forms of media, which copyright is protected by the copyright laws of the
United States and by international treaties. Full text of licensing terms
applicable to this document can be found in the LICENSE.md file.
-->
<zcl:cluster
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:type="http://zigbee.org/zcl/types"
xmlns:xi="http://www.w3.org/2001/XInclude"
xmlns:zcl="http://zigbee.org/zcl/clusters"
xsi:schemaLocation="http://zigbee.org/zcl/clusters cluster.xsd http://zigbee.org/zcl/types type.xsd"
id="0402" revision="3" name="TemperatureMeasurement">
<classification role="application" picsCode="TMP" primaryTransaction="2" />
<server>
<attributes>
<attribute id="0000" name="MeasuredValue" type="int16" reportRequired="true" default="-32768" required="true">
<restriction>
<type:minInclusiveRef ref="MinMeasuredValue" />
<type:maxInclusiveRef ref="MaxMeasuredValue" />
</restriction>
</attribute>
<attribute id="0001" name="MinMeasuredValue" type="int16" min="-27315" max="32766" default="-32768" required="true">
<restriction>
<type:maxExclusiveRef ref="MaxMeasuredValue" />
</restriction>
</attribute>
<attribute id="0002" name="MaxMeasuredValue" type="int16" min="-27314" max="32767" default="-32768" required="true">
<restriction>
<type:minExclusiveRef ref="MinMeasuredValue" />
</restriction>
</attribute>
<attribute id="0003" name="Tolerance" type="uint16" max="2048" />
</attributes>
</server>
</zcl:cluster>