#
# Copyright (c) 2021 Nordic Semiconductor
#
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
#

menuconfig ZIGBEE_SCENES
	bool "Enable Zigbee scenes extension"
	select SETTINGS
	imply NVS

if ZIGBEE_SCENES

config ZIGBEE_SCENES_ENDPOINT
	int "Zigbee scenes endpoint"
	default 10
	range 1 240

config ZIGBEE_SCENE_TABLE_SIZE
	int "Zigbee scene table size"
	default 3
	range 1 30

# Configure ZIGBEE_SCENES_LOG_LEVEL
module = ZIGBEE_SCENES
module-str = Zigbee scenes extension
source "${ZEPHYR_BASE}/subsys/logging/Kconfig.template.log_config"

endif # ZIGBEE_SCENES
