* feat(docs): Add Zigbee library documentation * fix: Remove helper scripts * fix: Proper class naming for better readability * fix(docs): Fix typos Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * ci(pre-commit): Apply automatic fixes * fix(docs): Precommit fixes * fix(docs): Precommit fixes --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: pre-commit-ci-lite[bot] <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com>
35 lines
766 B
ReStructuredText
35 lines
766 B
ReStructuredText
#############
|
|
ZigbeeGateway
|
|
#############
|
|
|
|
About
|
|
-----
|
|
|
|
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.
|
|
Gateway is a device that can be used to bridge Zigbee network to other networks (e.g. Wi-Fi, Ethernet, etc.).
|
|
|
|
API Reference
|
|
-------------
|
|
|
|
Constructor
|
|
***********
|
|
|
|
ZigbeeGateway
|
|
^^^^^^^^^^^^^
|
|
|
|
Creates a new Zigbee gateway endpoint.
|
|
|
|
.. code-block:: arduino
|
|
|
|
ZigbeeGateway(uint8_t endpoint);
|
|
|
|
* ``endpoint`` - Endpoint number (1-254)
|
|
|
|
Example
|
|
-------
|
|
|
|
Gateway Implementation
|
|
**********************
|
|
|
|
.. literalinclude:: ../../../libraries/Zigbee/examples/Zigbee_Gateway/Zigbee_Gateway.ino
|
|
:language: arduino
|