You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/en/zigbee/ep_binary.rst
+6-17Lines changed: 6 additions & 17 deletions
Original file line number
Diff line number
Diff line change
@@ -6,22 +6,11 @@ About
6
6
-----
7
7
8
8
The ``ZigbeeBinary`` class provides an endpoint for binary input/output sensors in Zigbee networks. This endpoint implements the Zigbee Home Automation (HA) standard for binary sensors, supporting various application types for HVAC, security, and general binary sensing.
9
+
Binary Input (BI) is meant to be used for sensors that provide a binary signal, such as door/window sensors, motion detectors, etc. to be sent to the network.
Copy file name to clipboardExpand all lines: docs/en/zigbee/ep_carbon_dioxide_sensor.rst
+2-18Lines changed: 2 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -7,22 +7,6 @@ About
7
7
8
8
The ``ZigbeeCarbonDioxideSensor`` class provides a CO2 sensor endpoint for Zigbee networks. This endpoint implements the Zigbee Home Automation (HA) standard for carbon dioxide measurement devices.
9
9
10
-
**Features:**
11
-
* CO2 concentration measurement in ppm
12
-
* Configurable measurement range
13
-
* Tolerance and reporting configuration
14
-
* Automatic reporting capabilities
15
-
* Integration with common endpoint features (binding, OTA, etc.)
16
-
* Zigbee HA standard compliance
17
-
18
-
**Use Cases:**
19
-
* Indoor air quality monitoring
20
-
* Smart home ventilation control
21
-
* HVAC system air quality control
22
-
* Industrial air quality monitoring
23
-
* Health and safety monitoring
24
-
* Environmental monitoring systems
25
-
26
10
API Reference
27
11
-------------
28
12
@@ -109,8 +93,8 @@ Manually reports the current CO2 concentration value.
109
93
110
94
This function will return ``true`` if successful, ``false`` otherwise.
* ``measurement_type`` - DC measurement type constant
57
+
* ``measurement_type`` - DC measurement type constant (ZIGBEE_DC_MEASUREMENT_TYPE_VOLTAGE, ZIGBEE_DC_MEASUREMENT_TYPE_CURRENT, ZIGBEE_DC_MEASUREMENT_TYPE_POWER)
58
58
59
59
This function will return ``true`` if successful, ``false`` otherwise.
60
60
@@ -65,9 +65,9 @@ Sets the DC measurement value for a specific measurement type.
* ``measurement_type`` - DC measurement type constant
70
+
* ``measurement_type`` - DC measurement type constant (ZIGBEE_DC_MEASUREMENT_TYPE_VOLTAGE, ZIGBEE_DC_MEASUREMENT_TYPE_CURRENT, ZIGBEE_DC_MEASUREMENT_TYPE_POWER)
71
71
* ``value`` - Measurement value
72
72
73
73
This function will return ``true`` if successful, ``false`` otherwise.
@@ -79,9 +79,9 @@ Sets the minimum and maximum values for a DC measurement type.
* ``measurement_type`` - DC measurement type constant
84
+
* ``measurement_type`` - DC measurement type constant (ZIGBEE_DC_MEASUREMENT_TYPE_VOLTAGE, ZIGBEE_DC_MEASUREMENT_TYPE_CURRENT, ZIGBEE_DC_MEASUREMENT_TYPE_POWER)
85
85
* ``min`` - Minimum value
86
86
* ``max`` - Maximum value
87
87
@@ -94,9 +94,9 @@ Sets the multiplier and divisor for scaling DC measurements.
* ``measurement_type`` - DC measurement type constant
99
+
* ``measurement_type`` - DC measurement type constant (ZIGBEE_DC_MEASUREMENT_TYPE_VOLTAGE, ZIGBEE_DC_MEASUREMENT_TYPE_CURRENT, ZIGBEE_DC_MEASUREMENT_TYPE_POWER)
100
100
* ``multiplier`` - Multiplier value
101
101
* ``divisor`` - Divisor value
102
102
@@ -109,9 +109,9 @@ Sets the reporting configuration for DC measurements.
* ``measurement_type`` - DC measurement type constant
114
+
* ``measurement_type`` - DC measurement type constant (ZIGBEE_DC_MEASUREMENT_TYPE_VOLTAGE, ZIGBEE_DC_MEASUREMENT_TYPE_CURRENT, ZIGBEE_DC_MEASUREMENT_TYPE_POWER)
115
115
* ``min_interval`` - Minimum reporting interval in seconds
116
116
* ``max_interval`` - Maximum reporting interval in seconds
117
117
* ``delta`` - Minimum change required to trigger a report
@@ -125,9 +125,9 @@ Manually reports a DC measurement value.
* ``measurement_type`` - DC measurement type constant
130
+
* ``measurement_type`` - DC measurement type constant (ZIGBEE_DC_MEASUREMENT_TYPE_VOLTAGE, ZIGBEE_DC_MEASUREMENT_TYPE_CURRENT, ZIGBEE_DC_MEASUREMENT_TYPE_POWER)
131
131
132
132
This function will return ``true`` if successful, ``false`` otherwise.
133
133
@@ -141,10 +141,10 @@ Adds an AC measurement type for a specific phase.
Copy file name to clipboardExpand all lines: docs/en/zigbee/ep_gateway.rst
+3-15Lines changed: 3 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -6,19 +6,7 @@ About
6
6
-----
7
7
8
8
The ``ZigbeeGateway`` class provides a gateway endpoint for Zigbee networks. This endpoint implements the Zigbee Home Automation (HA) standard for network coordination and gateway functionality.
9
-
10
-
**Features:**
11
-
* Network coordination
12
-
* Device management
13
-
* Gateway functionality
14
-
* Integration with common endpoint features (binding, OTA, etc.)
15
-
* Zigbee HA standard compliance
16
-
17
-
**Use Cases:**
18
-
* Zigbee coordinators
19
-
* Smart home hubs
20
-
* Network gateways
21
-
* Bridge devices to other protocols (WiFi, Ethernet, etc.)
9
+
Gateway is a device that can be used to bridge Zigbee network to other networks (e.g. WiFi, Ethernet, etc.).
22
10
23
11
API Reference
24
12
-------------
@@ -37,8 +25,8 @@ Creates a new Zigbee gateway endpoint.
0 commit comments