.. _bluetooth_mesh_light_lc: Bluetooth: Mesh light fixture ############################# .. contents:: :local: :depth: 2 The Bluetooth® mesh light fixture sample demonstrates how to set up a light control mesh server model application, and control a dimmable LED with Bluetooth mesh using the :ref:`bt_mesh_onoff_readme`. Requirements ************ The sample supports the following development kits: .. table-from-sample-yaml:: The sample also requires a smartphone with Nordic Semiconductor's nRF Mesh mobile app installed in one of the following versions: * `nRF Mesh mobile app for Android`_ * `nRF Mesh mobile app for iOS`_ .. note:: |thingy53_sample_note| .. include:: /includes/tfm.txt Overview ******** This sample can be used to control the state of light sources. In addition to generic on and off functions, it allows changing the light level (brightness) of a LED light. The sample instantiates the :ref:`bt_mesh_lightness_srv_readme` model and the :ref:`bt_mesh_light_ctrl_srv_readme` model. As both Light Lightness Server and the Light LC Server extend the Generic OnOff Server, the two models need to be instantiated on separate elements. For more information, see documentation on :ref:`bt_mesh_light_ctrl_srv_readme`. Devices are nodes with a provisionee role in a mesh network. Provisioning is performed using the `nRF Mesh mobile app`_. This mobile application is also used to configure key bindings, and publication and subscription settings of the Bluetooth mesh model instances in the sample. After provisioning and configuring the mesh models supported by the sample in the `nRF Mesh mobile app`_, you can control the dimmable LED on the development kit from the app. Provisioning ============ The provisioning is handled by the :ref:`bt_mesh_dk_prov`. It supports four types of out-of-band (OOB) authentication methods, and uses the Hardware Information driver to generate a deterministic UUID to uniquely represent the device. Models ====== The following table shows the mesh light fixture composition data for this sample: .. table:: :align: center +-------------------------------+----------------------------+ | Element 1 | Element 2 | +===============================+============================+ | Config Server | Gen. OnOff Server | +-------------------------------+----------------------------+ | Health Server | Light LC Server | +-------------------------------+----------------------------+ | Gen. Level Server | Light LC Setup Server | +-------------------------------+----------------------------+ | Gen. OnOff Server | | +-------------------------------+----------------------------+ | Gen. DTT Server | | +-------------------------------+----------------------------+ | Gen. Power OnOff Server | | +-------------------------------+----------------------------+ | Gen. Power OnOff Setup Server | | +-------------------------------+----------------------------+ | Light Lightness Server | | +-------------------------------+----------------------------+ | Light Lightness Setup Server | | +-------------------------------+----------------------------+ The models are used for the following purposes: * The first element contains a Config Server and a Health Server. The Config Server allows configurator devices to configure the node remotely. The Health Server provides ``attention`` callbacks that are used during provisioning to call your attention to the device. These callbacks trigger blinking of the LEDs. * The seven other models in the first element are the product of a single instance of the Light Lightness Server. The application implements callbacks for the Light Lightness Server to control the first LED on the device using the PWM (pulse width modulation) driver. * The three models in the second element are the product of a single instance of the Light Lightness Control (LC) Server. The Light LC Server controls the Light Lightness Server in the first element, deciding on parameters such as fade time, lighting levels for different states, and inactivity timing. In this sample, the Light LC Server is enabled by default at first boot. Other nodes can control the Light Lightness Server through the Light LC Server, by sending On/Off messages to the Light LC Server or to the Generic OnOff Server in the second element. .. note:: It is possible to bypass the Light LC Server by directly communicating with the Light Lightness Server on the first element. For more details, see :ref:`bt_mesh_lightness_srv_readme` and :ref:`bt_mesh_light_ctrl_srv_readme`. The model handling is implemented in :file:`src/model_handler.c`, which uses the :ref:`dk_buttons_and_leds_readme` library and the :ref:`zephyr:pwm_api` API to control the LEDs on the development kit. User interface ************** Buttons: Can be used to input the out-of-band (OOB) authentication value during provisioning. All buttons have the same functionality during this procedure. If the :ref:`emds_readme` feature is enabled and the provisioning and configuration are complete, **Button 4** can be used to trigger storing for data with emergency data storage and halt the system. LEDs: Show the OOB authentication value during provisioning if the "Push button" OOB method is used. First LED outputs the current light level of the Light Lightness Server in the first element. If the :ref:`emds_readme` feature is enabled and **Button 4** is pressed LEDs 2 to 4 will light up to show that the board is halted. .. note:: :ref:`zephyr:thingy53_nrf5340` supports only one RGB LED. Each RGB LED channel is used as separate LED. Configuration ************* |config| |nrf5340_mesh_sample_note| Source file setup ================= This sample is split into the following source files: * A :file:`main.c` file to handle initialization. * A file for handling mesh models, :file:`model_handler.c`. * A file for handling PWM driven control of the dimmable LED, :file:`lc_pwm_led.c`. * A :file:`thingy53.c` file, used to handle preinitialization of the :ref:`zephyr:thingy53_nrf5340` board. It is only compiled when the sample is built for the :ref:`zephyr:thingy53_nrf5340` board. FEM support =========== .. include:: /includes/sample_fem_support.txt Emergency data storage ====================== To build this sample with support for emergency data storage, set ``OVERLAY_CONFIG`` to :file:`overlay-emds.conf`. This will save replay protection list (RPL) data and some of the :ref:`bt_mesh_lightness_srv_readme` data to the emergency data storage instead of to the :ref:`settings_api`. See :ref:`cmake_options` for instructions on how to add this option. For more information about using configuration overlay files, see :ref:`zephyr:important-build-vars` in the Zephyr documentation. Building and running ******************** .. |sample path| replace:: :file:`samples/bluetooth/mesh/light_ctrl` .. include:: /includes/build_and_run_ns.txt .. _bluetooth_mesh_light_ctrl_testing: Testing ======= After programming the sample to your development kit, you can test it by using a smartphone with `nRF Mesh mobile app`_ installed. Testing consists of provisioning the device and configuring it for communication with the mesh models. When the development kit is started, it will keep its previous Light state as the ``BT_MESH_ON_POWER_UP_RESTORE`` is set for the :ref:`bt_mesh_lightness_srv_readme`. When :ref:`emds_readme` is enabled it is important that the **Button 4** is used to store the data before the development kit is halted and then restarted. Provisioning the device ----------------------- .. |device name| replace:: :guilabel:`Mesh Light Fixture` .. include:: /includes/mesh_device_provisioning.txt Configuring models ------------------ See :ref:`ug_bt_mesh_model_config_app` for details on how to configure the mesh models with the nRF Mesh mobile app. Configure the Generic OnOff Server model on each element on the **Mesh Light Fixture** node: * Bind the model to **Application Key 1**. Once the model is bound to the application key, you can control the first LED on the device. * Open the Generic OnOff Server in the second element, then tap :guilabel:`ON` at the bottom of the Generic On Off Controls. You should now see the following actions: 1. The LED fades from 0% to 100% over a defined transition time following the message **Standby > On**. #. The LED stays at 100% for three seconds **On**. #. The LED fades from 100% to :kconfig:option:`CONFIG_BT_MESH_LIGHT_CTRL_SRV_LVL_PROLONG` over five seconds **On > Prolong**. #. The LED stays at :kconfig:option:`CONFIG_BT_MESH_LIGHT_CTRL_SRV_LVL_PROLONG` for three seconds **Prolong**. #. The LED fades from :kconfig:option:`CONFIG_BT_MESH_LIGHT_CTRL_SRV_LVL_PROLONG` to 0% over five seconds **Prolong > Standby**. The default value of :kconfig:option:`CONFIG_BT_MESH_LIGHT_CTRL_SRV_LVL_PROLONG` is 10000 (~15%). .. figure:: ../../../../../../../../samples/bluetooth/mesh/light_ctrl/images/bt_mesh_light_ctrl_levels.svg :alt: Light level transitions over time Light level transitions over time .. note:: The configuration of light levels, fade time, and timeouts can be changed by altering the configuration parameters in the :file:`prj.conf` file, and rebuilding the sample. Dependencies ************ This sample uses the following |NCS| libraries: * :ref:`bt_mesh_lightness_srv_readme` * :ref:`bt_mesh_light_ctrl_srv_readme` * :ref:`bt_mesh_dk_prov` * :ref:`dk_buttons_and_leds_readme` In addition, it uses the following Zephyr libraries: * ``include/drivers/hwinfo.h`` * :ref:`zephyr:kernel_api`: * ``include/kernel.h`` * :ref:`zephyr:pwm_api`: * ``drivers/pwm.h`` * :ref:`zephyr:bluetooth_api`: * ``include/bluetooth/bluetooth.h`` * :ref:`zephyr:bluetooth_mesh`: * ``include/bluetooth/mesh.h`` The sample also uses the following secure firmware component: * :ref:`Trusted Firmware-M `