Open nalves23 opened 6 days ago
Hi @nalves23 ,
I think your requirement can be achieved using the gateway example and the dimmable light example without any modifications.
The gateway running on the ESP32-S3 would behave as follows: You can observe the Network(0x1c84) is open for 180 seconds
log being printed twice.
I (5699) ESP_ZB_GATEWAY: Initialize Zigbee stack
I (5709) ESP_ZB_GATEWAY: Device started up in factory-reset mode
I (5709) ESP_ZB_GATEWAY: Start network formation
W (5889) ESP_ZB_GATEWAY: Network(0x1c84) closed, devices joining not allowed.
I (5889) ESP_ZB_GATEWAY: Formed network successfully (Extended PAN ID: 60:55:f9:ff:fe:f7:a2:ad, PAN ID: 0x1c84, Channel:13, Short Address: 0x0000)
I (6499) ESP_ZB_GATEWAY: Network(0x1c84) is open for 180 seconds
I (6499) ESP_ZB_GATEWAY: Network steering started
I (71019) ESP_ZB_GATEWAY: ZDO signal: NWK Device Associated (0x12), status: ESP_OK
I (71019) ESP_ZB_GATEWAY: ZDO signal: ZDO Device Update (0x30), status: ESP_OK
I (71119) ESP_ZB_GATEWAY: New device commissioned or rejoined (short: 0x9a67)
I (71729) ESP_ZB_GATEWAY: ZDO signal: ZDO Device Authorized (0x2f), status: ESP_OK
I (71819) ESP_ZB_GATEWAY: Network(0x1c84) is open for 180 seconds
Hi @xieqinan
Thank you for your feedback.
I have test it the same example that you referee and It worked well. However, in my example it didn't work again! What I did immediately was to bring my code closer to the example code, calling the network opening at the beginning of my gateway's operation (in the ESP_ZB_BDB_SIGNAL_DEVICE_REBOOT event of the esp_zb_app_signal_handler function), it worked well: 1- Gateway starts; 2- When the even ESP_ZB_BDB_SIGNAL_DEVICE_REBOOT occurs, the function esp_zb_bdb_open_network(180) is called; 3- After 60 seconds, I associated a device, and in the ESP_ZB_ZDO_SIGNAL_DEVICE_ANNCE event, I called the esp_zb_bdb_open_network(180) function again; 4- After 180 seconds from the previous point (3) the network is closed. So it worked as I expected.
The problem occurs if I don't call the network opening function at gateway start up but if I call the network opening event randomly, with the gateway running for some time via a press button, for example. My question is if there is any procedure that changes these settings after the gateway is initialized?
Can you try an example like mine, or has anyone already done it and had the same result?
kind regards nalves23
@nalves23 ,
I think this issue can be resolved more quickly, if you can provide a simple example to reproduce it.
Answers checklist.
IDF version.
ESP-IDF 5.3.1
esp-zigbee-lib version.
1.5.1
esp-zboss-lib version.
1.5.1
Espressif SoC revision.
ESP32-S3
What is the expected behavior?
When a coordinator has network in open mode to accept new Zigbee devices, after device joins, timer of open network must be renew by another 180 seconds.
What is the actual behavior?
I have a Zigbee coordinator with a physical button to open/close network for router or end devices joins the Zigbee network. My default open network time is defined to 180 seconds. To open and close the network, I use the functions esp_zb_bdb_open_network(ZB_ZGP_DEFAULT_COMMISSIONING_WINDOW) and esp_zb_bdb_close_network(), respectively, where ZB_ZGP_DEFAULT_COMMISSIONING_WINDOW is 180.
I have a feature that after one device joins the network, I want to renew the open network time. After device joins I call the function esp_zb_bdb_open_network(ZB_ZGP_DEFAULT_COMMISSIONING_WINDOW) but the open network time doesn't renew it. I have try it call first esp_zb_bdb_close_network() and after esp_zb_bdb_open_network(ZB_ZGP_DEFAULT_COMMISSIONING_WINDOW), but this procedure still doesn't work.
There are any function or callback that i can use to read open network timer or renew this timer when I need it?
Steps to reproduce.
More Information.
No response