mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-05 13:44:32 +02:00
zigbee: example API update
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
## IDF Component Manager Manifest File
|
||||
dependencies:
|
||||
espressif/esp-zboss-lib: "~0.3.0"
|
||||
espressif/esp-zigbee-lib: "~0.4.1"
|
||||
espressif/esp-zigbee-lib: "~0.5.0"
|
||||
## Required IDF version
|
||||
idf:
|
||||
version: ">=5.0.0"
|
||||
|
@@ -3,5 +3,5 @@
|
||||
nvs, data, nvs, 0x9000, 0x6000,
|
||||
phy_init, data, phy, 0xf000, 0x1000,
|
||||
factory, app, factory, 0x10000, 550K,
|
||||
zb_storage, data, fat, 0x9a000, 128K,
|
||||
zb_fct, data, fat, 0xba000, 1K,
|
||||
zb_storage, data, fat, 0x9a000, 16K,
|
||||
zb_fct, data, fat, 0x9e000, 1K,
|
||||
|
|
@@ -1,7 +1,7 @@
|
||||
## IDF Component Manager Manifest File
|
||||
dependencies:
|
||||
espressif/esp-zboss-lib: "~0.3.0"
|
||||
espressif/esp-zigbee-lib: "~0.4.1"
|
||||
espressif/esp-zigbee-lib: "~0.5.0"
|
||||
## Required IDF version
|
||||
idf:
|
||||
version: ">=5.0.0"
|
||||
|
@@ -3,4 +3,4 @@
|
||||
nvs, data, nvs, 0x9000, 0x6000,
|
||||
phy_init, data, phy, 0xf000, 0x1000,
|
||||
factory, app, factory, 0x10000, 550K,
|
||||
zb_storage, data, fat, 0x9a000, 128K,
|
||||
zb_storage, data, fat, 0x9a000, 16K,
|
||||
|
|
@@ -1,6 +1,6 @@
|
||||
## IDF Component Manager Manifest File
|
||||
dependencies:
|
||||
espressif/esp-zigbee-lib: "~0.4.1"
|
||||
espressif/esp-zigbee-lib: "~0.5.0"
|
||||
espressif/esp-zboss-lib: "~0.3.0"
|
||||
espressif/led_strip: "~2.0.0"
|
||||
## Required IDF version
|
||||
|
@@ -3,5 +3,5 @@
|
||||
nvs, data, nvs, 0x9000, 0x6000,
|
||||
phy_init, data, phy, 0xf000, 0x1000,
|
||||
factory, app, factory, 0x10000, 550K,
|
||||
zb_storage, data, fat, 0x9a000, 128K,
|
||||
zb_fct, data, fat, 0xba000, 1K,
|
||||
zb_storage, data, fat, 0x9a000, 16K,
|
||||
zb_fct, data, fat, 0x9e000, 1K,
|
||||
|
|
@@ -91,9 +91,9 @@ static void bdb_start_top_level_commissioning_cb(uint8_t mode_mask)
|
||||
ESP_ERROR_CHECK(esp_zb_bdb_start_top_level_commissioning(mode_mask));
|
||||
}
|
||||
|
||||
void user_find_cb(uint8_t zdo_status, uint16_t addr, uint8_t endpoint)
|
||||
void user_find_cb(esp_zb_zdp_status_t zdo_status, uint16_t addr, uint8_t endpoint, void *user_ctx)
|
||||
{
|
||||
ESP_LOGI(TAG, "User find cb: address:0x%x, endpoint:%d, response_status:%d", addr, endpoint, zdo_status);
|
||||
ESP_LOGI(TAG, "User find cb: response_status:%d, address:0x%x, endpoint:%d", zdo_status, addr, endpoint);
|
||||
if (zdo_status == ESP_ZB_ZDP_STATUS_SUCCESS) {
|
||||
on_off_light.endpoint = endpoint;
|
||||
on_off_light.short_addr = addr;
|
||||
@@ -145,7 +145,7 @@ void esp_zb_app_signal_handler(esp_zb_app_signal_t *signal_struct)
|
||||
esp_zb_zdo_match_desc_req_param_t cmd_req;
|
||||
cmd_req.dst_nwk_addr = dev_annce_params->device_short_addr;
|
||||
cmd_req.addr_of_interest = dev_annce_params->device_short_addr;
|
||||
esp_zb_zdo_find_on_off_light(&cmd_req, user_find_cb);
|
||||
esp_zb_zdo_find_on_off_light(&cmd_req, user_find_cb, NULL);
|
||||
break;
|
||||
default:
|
||||
ESP_LOGI(TAG, "ZDO signal: %d, status: %d", sig_type, err_status);
|
||||
|
@@ -1,6 +1,6 @@
|
||||
## IDF Component Manager Manifest File
|
||||
dependencies:
|
||||
espressif/esp-zigbee-lib: "~0.4.1"
|
||||
espressif/esp-zigbee-lib: "~0.5.0"
|
||||
espressif/esp-zboss-lib: "~0.3.0"
|
||||
## Required IDF version
|
||||
idf:
|
||||
|
@@ -3,5 +3,5 @@
|
||||
nvs, data, nvs, 0x9000, 0x6000,
|
||||
phy_init, data, phy, 0xf000, 0x1000,
|
||||
factory, app, factory, 0x10000, 550K,
|
||||
zb_storage, data, fat, 0x9a000, 128K,
|
||||
zb_fct, data, fat, 0xba000, 1K,
|
||||
zb_storage, data, fat, 0x9a000, 16K,
|
||||
zb_fct, data, fat, 0x9e000, 1K,
|
||||
|
|
Reference in New Issue
Block a user