<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://devzone.nordicsemi.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Help to get started with Zigbee</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/99433/help-to-get-started-with-zigbee</link><description>Hi, I want to implement a full Zigbee mesh with a coordinator and multiple router nodes for a university project and don&amp;#39;t really know how to get started. 
 I have looked in the Zigbee documentation on the Connect SDK page, but can&amp;#39;t find a way to implement</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 16 May 2023 16:07:28 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/99433/help-to-get-started-with-zigbee" /><item><title>RE: Help to get started with Zigbee</title><link>https://devzone.nordicsemi.com/thread/425952?ContentTypeID=1</link><pubDate>Tue, 16 May 2023 16:07:28 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:defbd89f-407b-40f5-99cc-4080d54cfe74</guid><dc:creator>Maria Gilje</dc:creator><description>&lt;p&gt;&lt;em&gt;Due to two national holidays in Norway this week DevZone has lower staffing. Some delays are to be expected.&amp;nbsp;&lt;/em&gt;&lt;/p&gt;
&lt;hr /&gt;
&lt;p&gt;&lt;em&gt;&lt;/em&gt;Hi Philipp,&lt;/p&gt;
[quote user="Schmid"]I tried the Tutorial at&amp;nbsp;&lt;a href="https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/nrf/protocols/zigbee/adding_clusters.html#ug-zigee-adding-clusters"&gt;https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/nrf/protocols/zigbee/adding_clusters.html#ug-zigee-adding-clusters&lt;/a&gt;. I got problems because there was&amp;nbsp;no reference to Macros like &amp;quot;ZB_HA_DECLARE_ON_OFF_SWITCH_CLUSTER_LIST&amp;quot;.[/quote]
&lt;p&gt;I see, the tutorial is in need of some updates. It does not reflect the &lt;a href="https://developer.nordicsemi.com/nRF_Connect_SDK/doc/2.3.0/nrfxlib/zboss/CHANGELOG.html#removed"&gt;related changes from v2.0.0&lt;/a&gt;. I will report this internally to get it updated. &lt;/p&gt;
&lt;p&gt;The releveant change is that ZB_HA_DECLARE_ON_OFF_SWITCH_CLUSTER_LIST and other legacy HA definitions was removed in nRF Connect SDK v2.0.0. The new structure is to have an &amp;quot;include&amp;quot; directory in your project folder where device definitions are located. In NCS v2.0.0+, the new structure is used in all the ZigBee samples. &lt;/p&gt;
[quote user="Schmid"]I ended up searching for the zb_ha_on_off_switch.h and include the File in my Template. Is this the intended way or did I miss something?[/quote]
&lt;p&gt;That file is not a part of NCS v2.0.0+, so compatibility can be an issue. The recommended way is to follow the same structure as the ZigBee samples, that is: you can look at the header files with the device definitions (&lt;a href="https://github.com/nrfconnect/sdk-nrf/blob/v2.3.0/samples/zigbee/light_bulb/include/zb_dimmable_light.h"&gt;zb_dimmable_light.h&lt;/a&gt; or &lt;a href="https://github.com/nrfconnect/sdk-nrf/blob/v2.3.0/samples/zigbee/light_switch/include/zb_dimmer_switch.h"&gt;zb_dimmer_switch.h&lt;/a&gt;) and place your version in a directory named &amp;quot;include&amp;quot; within your project. &lt;/p&gt;
[quote user="Schmid"]I don&amp;#39;t think there is a Cluster for that, maybe I&amp;nbsp;need to implement a custom one.&lt;br /&gt;The Data&amp;nbsp;will be&amp;nbsp;a List of tuples consisting of an ID and a Range Value in Meters (16 Bit per tuple, up to around&amp;nbsp;100 list entries).[/quote]
&lt;p&gt;You are correct. You need to create your own cluster. In &lt;a href="https://github.com/nrfconnect/sdk-nrfxlib/tree/v2.3.0/zboss/production/include/zcl"&gt;nrfxlib/zboss/production/include/zcl&lt;/a&gt; and &lt;a href="https://github.com/nrfconnect/sdk-nrfxlib/tree/v2.3.0/zboss/production/src/zcl"&gt;nrfxlib/zboss/production/src/zcl&lt;/a&gt; you can look at the implementation of the existing clusters. &lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Maria&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Help to get started with Zigbee</title><link>https://devzone.nordicsemi.com/thread/425262?ContentTypeID=1</link><pubDate>Fri, 12 May 2023 09:11:04 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:85dbb6f7-b051-45a9-ae0d-8ce7e762b3ca</guid><dc:creator>Schmid</dc:creator><description>&lt;p&gt;I tried the Tutorial at&amp;nbsp;&lt;a href="https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/nrf/protocols/zigbee/adding_clusters.html#ug-zigee-adding-clusters"&gt;https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/nrf/protocols/zigbee/adding_clusters.html#ug-zigee-adding-clusters&lt;/a&gt;. I got problems because there was&amp;nbsp;no reference to Macros like &amp;quot;ZB_HA_DECLARE_ON_OFF_SWITCH_CLUSTER_LIST&amp;quot;. I ended up searching for the zb_ha_on_off_switch.h and include the File in my Template. Is this the intended way or did I miss something?&lt;br /&gt;&lt;br /&gt;I don&amp;#39;t think there is a Cluster for that, maybe I&amp;nbsp;need to implement a custom one.&lt;br /&gt;The Data&amp;nbsp;will be&amp;nbsp;a List of tuples consisting of an ID and a Range Value in Meters (16 Bit per tuple, up to around&amp;nbsp;100 list entries).&lt;br /&gt;&lt;br /&gt;Greetings,&lt;br /&gt;Philipp&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Help to get started with Zigbee</title><link>https://devzone.nordicsemi.com/thread/425159?ContentTypeID=1</link><pubDate>Thu, 11 May 2023 14:46:08 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:2aea9d30-99f4-480d-9ae9-57b389eaefb5</guid><dc:creator>Maria Gilje</dc:creator><description>[quote user="Schmid"]1. The coordinator sends a request to a specific node to perform its task to acquire Data.[/quote]
&lt;p&gt;What exactly is the request? Please specify. The type of data (i.e. temperature) will directly impact which cluster to have on a node (i.e. temperature cluster).&lt;/p&gt;
&lt;p&gt;So we need to know what category of data you want to collect to know which type of clusters to include.&lt;/p&gt;
[quote user="Schmid"]2. The node responds with a list of data as result.[/quote]
&lt;p&gt;It is not enough to address a certain node, you need to address a specific attribute in a specific cluster. The exact cluster depends on what the data is (i.e. Temperature Measurement cluster for temperature) and which attribute to read via the Coordinator&amp;#39;s read attribute request (i.e. the MeasuredValue attribute for a temperature cluster).&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Also, here is a link for some more useful reading and documentation on the Zigbee Cluster Library (ZCL): &lt;a href="https://docs.nordicsemi.com/bundle/ncs-latest/page/nrf/protocols/zigbee/adding_clusters.html#add_temperature_sensor_device"&gt;https://docs.nordicsemi.com/bundle/ncs-latest/page/nrf/protocols/zigbee/adding_clusters.html#add_temperature_sensor_device&lt;/a&gt;. (edit 2024/7/18: updated to TechDocs url)&lt;/p&gt;
&lt;p&gt;Just letting you know: I&amp;#39;ll be out of office for a couple of days, and I&amp;#39;ll be back on Tuesday.&lt;/p&gt;
&lt;p&gt;Best Regards,&lt;/p&gt;
&lt;p&gt;Maria&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Help to get started with Zigbee</title><link>https://devzone.nordicsemi.com/thread/424773?ContentTypeID=1</link><pubDate>Wed, 10 May 2023 09:38:50 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:0ede9571-6ffd-4fae-8015-20421cb4298a</guid><dc:creator>Schmid</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;thank you very much for your answer.&lt;/p&gt;
&lt;p&gt;I would like to have a network that consists of several routers and a coordinator. The routers will only respond when addressed by the coordinator. All devices will be constantly moving (some perhaps temporarily out of range), so messages may need to be forwarded multiple times to reach their destination.&lt;/p&gt;
&lt;p&gt;The router nodes have a job to do and thus receive the relevant data. Therefore, the process should be as follows:&lt;/p&gt;
&lt;p&gt;1. The coordinator sends a request to a specific node to perform its task to acquire Data.&lt;br /&gt;2. The node responds with a list of data as result.&lt;/p&gt;
&lt;p&gt;Greetings,&lt;br /&gt;Philipp&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Help to get started with Zigbee</title><link>https://devzone.nordicsemi.com/thread/424363?ContentTypeID=1</link><pubDate>Mon, 08 May 2023 17:34:56 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:44608da8-1c9c-477d-bb3c-45a9bc90b88f</guid><dc:creator>Maria Gilje</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;In addition to recommend reading the getting started pages that&amp;nbsp;BilalAliAhmad linked I want to clear up some terminology.&lt;/p&gt;
[quote user=""]but can&amp;#39;t find a way to implement simple messages. [/quote]
&lt;p&gt;Zigbee uses clusters, and the communication between devices depend on the clusters. Which clusters to use depend on what you want to do. &lt;/p&gt;
[quote user=""]I have tried using the coordinator and template examples to send messages between them, but have had no success.[/quote]
&lt;p&gt;What type of data do you want to send? I can help you to get started if I have some more information on what you want the Zigbee devices to do.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Maria&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Help to get started with Zigbee</title><link>https://devzone.nordicsemi.com/thread/424060?ContentTypeID=1</link><pubDate>Fri, 05 May 2023 15:29:47 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:0a2c5c6e-d6cc-4412-b6fd-0c3ad875df4d</guid><dc:creator>BilalAliAhmad</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;You can refer to these gettings started guides:&lt;br /&gt;&lt;a href="https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/nrf/protocols/zigbee/index.html"&gt;developer.nordicsemi.com/.../index.html&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>