Bluetooth Mesh: Light fixture

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 Generic OnOff models.

This sample demonstrates how to implement the following Networked Lighting Control profiles:

  • Basic Lightness Controller NLC Profile

  • Energy Monitor NLC Profile

Requirements

The sample supports the following development kits:

Hardware platforms

PCA

Board name

Build target

Thingy:53

PCA20053

thingy53_nrf5340

thingy53_nrf5340_cpuapp

nRF5340 DK

PCA10095

nrf5340dk_nrf5340

nrf5340dk_nrf5340_cpuapp_ns nrf5340dk_nrf5340_cpuapp

nRF52 DK

PCA10040

nrf52dk_nrf52832

nrf52dk_nrf52832

nRF52840 Dongle

PCA10059

nrf52840dongle_nrf52840

nrf52840dongle_nrf52840

nRF52840 DK

PCA10056

nrf52840dk_nrf52840

nrf52840dk_nrf52840

nRF52833 DK

PCA10100

nrf52833dk_nrf52833

nrf52833dk_nrf52833

nRF21540 DK

PCA10112

nrf21540dk_nrf52840

nrf21540dk_nrf52840

The sample also requires a smartphone with Nordic Semiconductor’s nRF Mesh mobile app installed in one of the following versions:

Note

If you build this application for Thingy:53, it enables additional features. See Thingy:53 application guide for details.

When built for an _ns build target, the sample is configured to compile and run as a non-secure application with Cortex-M Security Extensions enabled. Therefore, it automatically includes Trusted Firmware-M that prepares the required peripherals and secure services to be available for the application.

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 an LED light and shows how the light can react to supported sensor messages. It also demonstrates how the Sensor models and the device properties can be used to report additional light source usage data.

The sample instantiates the following models:

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 Light Lightness Control Server.

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 Bluetooth Mesh provisioning handler for Nordic DKs. 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:

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

Scene Server

Scene Setup Server

Sensor Server

Sensor 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 next seven 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 next two models in the first element are the product of a single instance of the Scene Server. The Scene Server allows the device to store and recall scenes.

  • The last two models in the first element are the product of a single instance of the Sensor Server. The Sensor Server allows the device to report the value of the bt_mesh_sensor_precise_tot_dev_energy_use property.

  • 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 Light Lightness Server and Light Lightness Control Server.

Other nodes can store or recall scenes through Scene Server, by sending Scene messages. They can also fetch the current value of the bt_mesh_sensor_precise_tot_dev_energy_use property by sending Sensor Get messages.

The model handling is implemented in src/model_handler.c, which uses the DK Buttons and LEDs library and the Pulse Width Modulation (PWM) 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 Emergency data storage 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 Emergency data storage feature is enabled and Button 4 is pressed LEDs 2 to 4 will light up to show that the board is halted.

Note

Thingy:53 supports only one RGB LED. Each RGB LED channel is used as separate LED.

Note

Thingy:53 and the nRF52840 Dongle do not support emergency data storage.

Configuration

See Configuring and building an application for information about how to permanently or temporarily change the configuration.

For nRF5340 and Thingy:53, the extended advertiser has to be set manually for the network core, because the Bluetooth® Low Energy does not know that the Bluetooth Mesh is enabled when built for this core. This is already done for this sample by setting CONFIG_BT_EXT_ADV=y for the network core.

The Kconfig option CONFIG_BT_MESH_LIGHT_CTRL_REG_SPEC is set by default as it is necessary for the Light Lightness Control Server model according to the Bluetooth Mesh model specification. The option enables a separate module called illuminance regulator. For more information about the module, see the documentation on Illuminance regulator interface and Specification-defined illuminance regulator.

Source file setup

This sample is split into the following source files:

  • A main.c file to handle initialization.

  • A file for handling mesh models, model_handler.c.

  • A file for handling PWM driven control of the dimmable LED, lc_pwm_led.c.

FEM support

You can add support for the nRF21540 front-end module to this sample by using one of the following options, depending on your hardware:

  • Build the sample for one board that contains the nRF21540 FEM, such as nrf21540dk_nrf52840.

  • Manually create a devicetree overlay file that describes how FEM is connected to the nRF5 SoC in your device. See Set devicetree overlays for different ways of adding the overlay file.

  • Provide nRF21540 FEM capabilities by using a shield, for example the nRF21540 EK shield that is available in the nRF Connect SDK. In this case, build the project for a board connected to the shield you are using with an appropriate variable included in the build command, for example SHIELD=nrf21540ek. This variable instructs the build system to append the appropriate devicetree overlay file.

    To build the sample in the nRF Connect for VS Code IDE for an nRF52840 DK with the nRF21540 EK attached, add the shield variable in the build configuration’s Extra CMake arguments and rebuild the build configuration. For example: -DSHIELD=nrf21540ek.

    See nRF Connect for VS Code extension pack documentation for more information.

    See Programming nRF21540 EK for information about how to program when you are using a board with a network core, for example nRF5340 DK.

Each of these options adds the description of the nRF21540 FEM to the devicetree. See Working with RF front-end modules for more information about FEM in the nRF Connect SDK.

To add support for other front-end modules, add the respective devicetree file entries to the board devicetree file or the devicetree overlay file.

Emergency data storage

To build this sample with support for emergency data storage (EMDS), set OVERLAY_CONFIG to overlay-emds.conf. This will save replay protection list (RPL) data and some of the Light Lightness Server data to the emergency data storage instead of to the Settings. When using EMDS, certain considerations need to be taken regarding hardware choices in your application design. See Application integration in the EMDS documentation for more information.

See Providing CMake options for instructions on how to add this option. For more information about using configuration overlay files, see Important Build System Variables in the Zephyr documentation.

Building and running

This sample can be found under samples/bluetooth/mesh/light_ctrl in the nRF Connect SDK folder structure.

When built as firmware image for the _ns build target, the sample has Cortex-M Security Extensions (CMSE) enabled and separates the firmware between Non-Secure Processing Environment (NSPE) and Secure Processing Environment (SPE). Because of this, it automatically includes the Trusted Firmware-M (TF-M). To read more about CMSE, see Processing environments.

To build the sample with Visual Studio Code, follow the steps listed on the How to build an application page in the nRF Connect for VS Code extension documentation. See Configuring and building an application for other building scenarios, Programming an application for programming steps, and Testing and optimization for general information about testing and debugging in the nRF Connect SDK.

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 Light Lightness Server. When Emergency data storage 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

The provisioning assigns an address range to the device, and adds it to the mesh network. Complete the following steps in the nRF Mesh app:

  1. Tap Add node to start scanning for unprovisioned mesh devices.

  2. Select the Mesh Light Fixture device to connect to it.

  3. Tap Identify, and then Provision, to provision the device.

  4. When prompted, select an OOB method and follow the instructions in the app.

Once the provisioning is complete, the app returns to the Network screen.

Configuring models

See Configuring mesh models using the nRF Mesh mobile 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 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.

  2. The LED stays at 100% for three seconds On.

  3. The LED fades from 100% to CONFIG_BT_MESH_LIGHT_CTRL_SRV_LVL_PROLONG over five seconds On > Prolong.

  4. The LED stays at CONFIG_BT_MESH_LIGHT_CTRL_SRV_LVL_PROLONG for three seconds Prolong.

  5. The LED fades from CONFIG_BT_MESH_LIGHT_CTRL_SRV_LVL_PROLONG to 0% over five seconds Prolong > Standby.

The default value of CONFIG_BT_MESH_LIGHT_CTRL_SRV_LVL_PROLONG is 10000 (~15%).

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 prj.conf file, and rebuilding the sample.

Configure the Sensor Server model on the Mesh Light Fixture node:

  • Bind the model to Application Key 1. Make sure to bind the same application key to the peer Sensor Client.

The Sensor Server model is now configured and able to receive messages from and send data to the peer Sensor Client.

Configure the Sensor Setup Server model on the Mesh Sensor node:

  • Bind the model to Application Key 1. Make sure to bind the same application key to the peer Sensor Client.

The Sensor Setup Server model is now configured and able to receive sensor setting messages from the Sensor Client.

Dependencies

This sample uses the following nRF Connect SDK libraries:

In addition, it uses the following Zephyr libraries:

The sample also uses the following secure firmware component: