49 lines
2.2 KiB
C
49 lines
2.2 KiB
C
/*
|
|
* SPDX-FileCopyrightText: 2021-2022 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: CC0-1.0
|
|
*
|
|
* Zigbee HA_on_off_light Example
|
|
*
|
|
* This example code is in the Public Domain (or CC0 licensed, at your option.)
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, this
|
|
* software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
|
|
* CONDITIONS OF ANY KIND, either express or implied.
|
|
*/
|
|
|
|
#include "esp_zigbee_core.h"
|
|
#include "light_driver.h"
|
|
#include "zcl_utility.h"
|
|
|
|
/* Zigbee configuration */
|
|
#define INSTALLCODE_POLICY_ENABLE false /* enable the install code policy for security */
|
|
#define ED_AGING_TIMEOUT ESP_ZB_ED_AGING_TIMEOUT_64MIN
|
|
#define ED_KEEP_ALIVE 3000 /* 3000 millisecond */
|
|
#define HA_ESP_LIGHT_ENDPOINT 10 /* esp light bulb device endpoint, used to process light controlling commands */
|
|
#define ESP_ZB_PRIMARY_CHANNEL_MASK ESP_ZB_TRANSCEIVER_ALL_CHANNELS_MASK /* Zigbee primary channel mask use in the example */
|
|
|
|
/* Basic manufacturer information */
|
|
#define ESP_MANUFACTURER_NAME "\x09""ESPRESSIF" /* Customized manufacturer name */
|
|
#define ESP_MODEL_IDENTIFIER "\x07"CONFIG_IDF_TARGET /* Customized model identifier */
|
|
|
|
#define ESP_ZB_ZED_CONFIG() \
|
|
{ \
|
|
.esp_zb_role = ESP_ZB_DEVICE_TYPE_ED, \
|
|
.install_code_policy = INSTALLCODE_POLICY_ENABLE, \
|
|
.nwk_cfg.zed_cfg = { \
|
|
.ed_timeout = ED_AGING_TIMEOUT, \
|
|
.keep_alive = ED_KEEP_ALIVE, \
|
|
}, \
|
|
}
|
|
|
|
#define ESP_ZB_DEFAULT_RADIO_CONFIG() \
|
|
{ \
|
|
.radio_mode = ZB_RADIO_MODE_NATIVE, \
|
|
}
|
|
|
|
#define ESP_ZB_DEFAULT_HOST_CONFIG() \
|
|
{ \
|
|
.host_connection_mode = ZB_HOST_CONNECTION_MODE_NONE, \
|
|
}
|