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: libraries/Zigbee/examples/Zigbee_Color_Dimmable_Light/README.md
+9-5
Original file line number
Diff line number
Diff line change
@@ -27,17 +27,21 @@ To get more information about the Espressif boards see [Espressif Development Ki
27
27
* Select the End device Zigbee mode: `Tools -> Zigbee mode: Zigbee ED (end device)`
28
28
* Select Partition Scheme for Zigbee: `Tools -> Partition Scheme: Zigbee 4MB with spiffs`
29
29
* Select the COM port: `Tools -> Port: xxx` where the `xxx` is the detected COM port.
30
+
* Optional: Set debug level to verbose to see all logs from Zigbee stack: `Tools -> Core Debug Level: Verbose`.
30
31
31
32
## Troubleshooting
32
33
33
-
If the End device flashed with this example is not connecting to the coordinator, erase the flash before flashing it to the board. It is recommended to do this if you did changes to the coordinator.
34
+
If the End device flashed with this example is not connecting to the coordinator, erase the flash of the End device before flashing the example to the board. It is recommended to do this if you re-flash the coordinator.
34
35
You can do the following:
35
36
36
-
* In the Arduino IDE go to the Tools menu and set `Erase All Flash Before Sketch Upload` to `Enabled`
37
-
*In the sketch uncomment function `esp_zb_nvram_erase_at_start(true);`located in `esp_zb_task` function.
37
+
* In the Arduino IDE go to the Tools menu and set `Erase All Flash Before Sketch Upload` to `Enabled`.
38
+
*Add to the sketch `Zigbee.factoryReset();`to reset the device and Zigbee stack.
38
39
39
-
By default, the coordinator network is open for 180s after rebooting or flashing new firmware. After that, the network is closed for adding new devices.
40
-
You can change it by editing `esp_zb_bdb_open_network(180);` in `esp_zb_app_signal_handler` function.
40
+
By default, the coordinator network is closed after rebooting or flashing new firmware.
41
+
To open the network you have 2 options:
42
+
43
+
* Open network after reboot by setting `Zigbee.setRebootOpenNetwork(time);` before calling `Zigbee.begin();`.
44
+
* In application you can anytime call `Zigbee.openNetwork(time);` to open the network for devices to join.
41
45
42
46
***Important: Make sure you are using a good quality USB cable and that you have a reliable power source***
* Select Partition Scheme for Zigbee: `Tools -> Partition Scheme: Zigbee 4MB with spiffs`.
29
29
* Select the COM port: `Tools -> Port: xxx where the `xxx` is the detected COM port.
30
-
* Optional: Set debug level to info to see logs from Zigbee stack: `Tools -> Core Debug Level: Info`.
30
+
* Optional: Set debug level to verbose to see all logs from Zigbee stack: `Tools -> Core Debug Level: Verbose`.
31
31
32
32
## Troubleshooting
33
33
34
-
If the End device flashed with the example `Zigbee_Light_Bulb` is not connecting to the coordinator, erase the flash of the End device before flashing the example to the board. It is recommended to do this if you re-flash the coordinator.
34
+
If the End device flashed with the example `Zigbee_Color_Dimmable_Light` is not connecting to the coordinator, erase the flash of the End device before flashing the example to the board. It is recommended to do this if you re-flash the coordinator.
35
35
You can do the following:
36
36
37
37
* In the Arduino IDE go to the Tools menu and set `Erase All Flash Before Sketch Upload` to `Enabled`.
38
-
*In the `Zigbee_Light_Bulb` example sketch uncomment function `esp_zb_nvram_erase_at_start(true);`located in `esp_zb_task` function.
38
+
*Add to the sketch `Zigbee.factoryReset();`to reset the device and Zigbee stack.
39
39
40
-
By default, the coordinator network is open for 180s after rebooting or flashing new firmware. After that, the network is closed for adding new devices.
41
-
You can change it by editing `esp_zb_bdb_open_network(180);` in `esp_zb_app_signal_handler` function.
40
+
By default, the coordinator network is closed after rebooting or flashing new firmware.
41
+
To open the network you have 2 options:
42
+
43
+
* Open network after reboot by setting `Zigbee.setRebootOpenNetwork(time);` before calling `Zigbee.begin();`.
44
+
* In application you can anytime call `Zigbee.openNetwork(time);` to open the network for devices to join.
42
45
43
46
***Important: Make sure you are using a good quality USB cable and that you have a reliable power source***
Copy file name to clipboardExpand all lines: libraries/Zigbee/examples/Zigbee_On_Off_Light/README.md
+10-5
Original file line number
Diff line number
Diff line change
@@ -28,17 +28,22 @@ To get more information about the Espressif boards see [Espressif Development Ki
28
28
* Select the End device Zigbee mode: `Tools -> Zigbee mode: Zigbee ED (end device)`
29
29
* Select Partition Scheme for Zigbee: `Tools -> Partition Scheme: Zigbee 4MB with spiffs`
30
30
* Select the COM port: `Tools -> Port: xxx` where the `xxx` is the detected COM port.
31
+
* Optional: Set debug level to verbose to see all logs from Zigbee stack: `Tools -> Core Debug Level: Verbose`.
31
32
32
33
## Troubleshooting
33
34
34
-
If the End device flashed with this example is not connecting to the coordinator, erase the flash before flashing it to the board. It is recommended to do this if you did changes to the coordinator.
35
+
If the End device flashed with this example is not connecting to the coordinator, erase the flash of the End device before flashing the example to the board. It is recommended to do this if you re-flash the coordinator.
35
36
You can do the following:
36
37
37
-
* In the Arduino IDE go to the Tools menu and set `Erase All Flash Before Sketch Upload` to `Enabled`
38
-
* In the sketch uncomment function `esp_zb_nvram_erase_at_start(true);` located in `esp_zb_task` function.
38
+
* In the Arduino IDE go to the Tools menu and set `Erase All Flash Before Sketch Upload` to `Enabled`.
39
+
* Add to the sketch `Zigbee.factoryReset();` to reset the device and Zigbee stack.
40
+
41
+
By default, the coordinator network is closed after rebooting or flashing new firmware.
42
+
To open the network you have 2 options:
43
+
44
+
* Open network after reboot by setting `Zigbee.setRebootOpenNetwork(time);` before calling `Zigbee.begin();`.
45
+
* In application you can anytime call `Zigbee.openNetwork(time);` to open the network for devices to join.
39
46
40
-
By default, the coordinator network is open for 180s after rebooting or flashing new firmware. After that, the network is closed for adding new devices.
41
-
You can change it by editing `esp_zb_bdb_open_network(180);` in `esp_zb_app_signal_handler` function.
42
47
43
48
***Important: Make sure you are using a good quality USB cable and that you have a reliable power source***
* Select Partition Scheme for Zigbee: `Tools -> Partition Scheme: Zigbee 4MB with spiffs`.
29
29
* Select the COM port: `Tools -> Port: xxx where the `xxx` is the detected COM port.
30
-
* Optional: Set debug level to info to see logs from Zigbee stack: `Tools -> Core Debug Level: Info`.
30
+
* Optional: Set debug level to verbose to see all logs from Zigbee stack: `Tools -> Core Debug Level: Verbose`.
31
31
32
32
## Troubleshooting
33
33
34
-
If the End device flashed with the example `Zigbee_Light_Bulb` is not connecting to the coordinator, erase the flash of the End device before flashing the example to the board. It is recommended to do this if you re-flash the coordinator.
34
+
If the End device flashed with the example `Zigbee_On_Off_Light` is not connecting to the coordinator, erase the flash of the End device before flashing the example to the board. It is recommended to do this if you re-flash the coordinator.
35
35
You can do the following:
36
36
37
37
* In the Arduino IDE go to the Tools menu and set `Erase All Flash Before Sketch Upload` to `Enabled`.
38
-
* In the `Zigbee_Light_Bulb` example sketch uncomment function `esp_zb_nvram_erase_at_start(true);` located in `esp_zb_task` function.
38
+
* In the `Zigbee_On_Off_Light` example sketch call `Zigbee.factoryReset();`.
39
39
40
-
By default, the coordinator network is open for 180s after rebooting or flashing new firmware. After that, the network is closed for adding new devices.
41
-
You can change it by editing `esp_zb_bdb_open_network(180);` in `esp_zb_app_signal_handler` function.
40
+
By default, the coordinator network is closed after rebooting or flashing new firmware.
41
+
To open the network you have 2 options:
42
+
43
+
* Open network after reboot by setting `Zigbee.setRebootOpenNetwork(time);` before calling `Zigbee.begin();`.
44
+
* In application you can anytime call `Zigbee.openNetwork(time);` to open the network for devices to join.
42
45
43
46
***Important: Make sure you are using a good quality USB cable and that you have a reliable power source***
Copy file name to clipboardExpand all lines: libraries/Zigbee/examples/Zigbee_Scan_Networks/README.md
+1-9
Original file line number
Diff line number
Diff line change
@@ -42,18 +42,10 @@ To get more information about the Espressif boards see [Espressif Development Ki
42
42
* Select the End device Zigbee mode: `Tools -> Zigbee mode: Zigbee ED (end device)`
43
43
* Select Partition Scheme for Zigbee: `Tools -> Partition Scheme: Zigbee 4MB with spiffs`
44
44
* Select the COM port: `Tools -> Port: xxx` where the `xxx` is the detected COM port.
45
+
* Optional: Set debug level to verbose to see all logs from Zigbee stack: `Tools -> Core Debug Level: Verbose`.
45
46
46
47
## Troubleshooting
47
48
48
-
If the End device flashed with this example is not connecting to the coordinator, erase the flash before flashing it to the board. It is recommended to do this if you did changes to the coordinator.
49
-
You can do the following:
50
-
51
-
* In the Arduino IDE go to the Tools menu and set `Erase All Flash Before Sketch Upload` to `Enabled`
52
-
* In the sketch uncomment function `esp_zb_nvram_erase_at_start(true);` located in `esp_zb_task` function.
53
-
54
-
By default, the coordinator network is open for 180s after rebooting or flashing new firmware. After that, the network is closed for adding new devices.
55
-
You can change it by editing `esp_zb_bdb_open_network(180);` in `esp_zb_app_signal_handler` function.
56
-
57
49
***Important: Make sure you are using a good quality USB cable and that you have a reliable power source***
58
50
59
51
***LED not blinking:** Check the wiring connection and the IO selection.
Copy file name to clipboardExpand all lines: libraries/Zigbee/examples/Zigbee_Temperature_Sensor/README.md
+9-5
Original file line number
Diff line number
Diff line change
@@ -38,17 +38,21 @@ To get more information about the Espressif boards see [Espressif Development Ki
38
38
* Select the End device Zigbee mode: `Tools -> Zigbee mode: Zigbee ED (end device)`
39
39
* Select Partition Scheme for Zigbee: `Tools -> Partition Scheme: Zigbee 4MB with spiffs`
40
40
* Select the COM port: `Tools -> Port: xxx` where the `xxx` is the detected COM port.
41
+
* Optional: Set debug level to verbose to see all logs from Zigbee stack: `Tools -> Core Debug Level: Verbose`.
41
42
42
43
## Troubleshooting
43
44
44
-
If the End device flashed with this example is not connecting to the coordinator, erase the flash before flashing it to the board. It is recommended to do this if you did changes to the coordinator.
45
+
If the End device flashed with this example is not connecting to the coordinator, erase the flash of the End device before flashing the example to the board. It is recommended to do this if you re-flash the coordinator.
45
46
You can do the following:
46
47
47
-
* In the Arduino IDE go to the Tools menu and set `Erase All Flash Before Sketch Upload` to `Enabled`
48
-
*In the sketch uncomment function `esp_zb_nvram_erase_at_start(true);`located in `esp_zb_task` function.
48
+
* In the Arduino IDE go to the Tools menu and set `Erase All Flash Before Sketch Upload` to `Enabled`.
49
+
*Add to the sketch `Zigbee.factoryReset();`to reset the device and Zigbee stack.
49
50
50
-
By default, the coordinator network is open for 180s after rebooting or flashing new firmware. After that, the network is closed for adding new devices.
51
-
You can change it by editing `esp_zb_bdb_open_network(180);` in `esp_zb_app_signal_handler` function.
51
+
By default, the coordinator network is closed after rebooting or flashing new firmware.
52
+
To open the network you have 2 options:
53
+
54
+
* Open network after reboot by setting `Zigbee.setRebootOpenNetwork(time);` before calling `Zigbee.begin();`.
55
+
* In application you can anytime call `Zigbee.openNetwork(time);` to open the network for devices to join.
52
56
53
57
***Important: Make sure you are using a good quality USB cable and that you have a reliable power source***
* Select Partition Scheme for Zigbee: `Tools -> Partition Scheme: Zigbee 4MB with spiffs`.
40
40
* Select the COM port: `Tools -> Port: xxx where the `xxx` is the detected COM port.
41
-
* Optional: Set debug level to info to see logs from Zigbee stack: `Tools -> Core Debug Level: Info`.
41
+
* Optional: Set debug level to verbose to see all logs from Zigbee stack: `Tools -> Core Debug Level: Verbose`.
42
42
43
43
## Troubleshooting
44
44
45
45
If the End device flashed with the example `Zigbee_Temperature_Sensor` is not connecting to the coordinator, erase the flash of the End device before flashing the example to the board. It is recommended to do this if you re-flash the coordinator.
46
46
You can do the following:
47
47
48
48
* In the Arduino IDE go to the Tools menu and set `Erase All Flash Before Sketch Upload` to `Enabled`.
49
-
* In the `Zigbee_Temperature_Sensor` example sketch uncomment function `esp_zb_nvram_erase_at_start(true);` located in `esp_zb_task` function.
49
+
* In the `Zigbee_Temperature_Sensor` example sketch call `Zigbee.factoryReset();`.
50
50
51
-
By default, the coordinator network is open for 180s after rebooting or flashing new firmware. After that, the network is closed for adding new devices.
52
-
You can change it by editing `esp_zb_bdb_open_network(180);` in `esp_zb_app_signal_handler` function.
51
+
By default, the coordinator network is closed after rebooting or flashing new firmware.
52
+
To open the network you have 2 options:
53
+
54
+
* Open network after reboot by setting `Zigbee.setRebootOpenNetwork(time);` before calling `Zigbee.begin();`.
55
+
* In application you can anytime call `Zigbee.openNetwork(time);` to open the network for devices to join.
53
56
54
57
***Important: Make sure you are using a good quality USB cable and that you have a reliable power source***
0 commit comments