The CC13X2_26X2 pump example application provides a working demonstration of a connected pump device. This uses the open-source Matter implementation and the Texas Instruments SimpleLinkā¢ CC13x2 and CC26x2 software development kit.
This example is enabled to build for CC2652R7 devices. This upcoming devices are currently not yet in full production. For more information on device availability or early access to an engineering build of our Matter-enabled SDK, please reach out here.
The pump example is intended to serve both as a means to explore the workings of Matter, as well as a template for creating real products based on the Texas Instruments devices.
This example application has a simple User Interface to depict the state of the pump and to control the state. The user LEDs on the LaunchPad are set on when the pump is started, and are set off when stopped. The LEDs will flash when in the transition state between started and stopped.
Short presses (less than 1000ms) of the right user button (BTN-2
) are used for toggling the pump state.
Short presses (less than 1000ms) of the left user button (BTN-1
) are used for toggling Matter BLE advertisements.
Long presses (greater than 5000ms) of the left user button (BTN-1
) will initiate a factory reset of the device clearing all stored provisioning information to allow for a new network setup.
Some initial setup is necessary for preparing the build environment. This section will need to be done when migrating to new versions of the SDK.
An engineering SDK from TI is required. Please request access for it here.
Follow the default installation instructions when executing the installer.
The version of OpenThread used in this repository is newer than the one packaged with the TI SDK. Check the following section for a list of changes needed.
Download and install SysConfig (recommended version)
If you have installed different versions, the build defaults will need to be changed to reflect this in ${chip_root}/examples/build_overrides/ti_simplelink_sdk.gni
.
Install Python 3.8 for the GN build system:
# Linux $ sudo apt-get install python3.8 python3.8-distutils python3.8-dev python3.8-venv # Distutils listed due to a package manager error on Ubuntu 18.04
Run the bootstrap script to setup the build environment.
$ cd ~/connectedhomeip $ source ./scripts/bootstrap.sh
It is necessary to activate the environment in every new shell. Then run GN and Ninja to build the executable.
Activate the build environment with the repository activate script.
$ cd ~/connectedhomeip $ source ./scripts/activate.sh
Run the build to produce a default executable. By default on Linux both the TI SimpleLink SDK and Sysconfig are located in a ti
folder in the user's home directory, and you must provide the absolute path to them. For example /home/username/ti/simplelink_cc13xx_cc26xx_sdk_5_30_03_01_eng
and /home/username/ti/sysconfig_1.10.0
. On Windows the default directory is C:\ti
.
$ cd ~/connectedhomeip/examples/pump-app/cc13x2x7_26x2x7 $ export TI_SIMPLELINK_SDK_ROOT=$HOME/ti/simplelink_cc13xx_cc26xx_sdk_5_30_03_01_eng $ export TI_SYSCONFIG_ROOT=$HOME/ti/sysconfig_1.10.0 $ gn gen out/debug --args="ti_simplelink_sdk_root=\"${TI_SIMPLELINK_SDK_ROOT}\" ti_sysconfig_root=\"${TI_SYSCONFIG_ROOT}\"" $ ninja -C out/debug
Loading the built image onto a LaunchPad is supported through two methods; Uniflash and Code Composer Studio (CCS). UniFlash can be used to load the image. Code Composer Studio can be used to load the image and debug the source code.
Programming and Debugging with CCS
By default the log output will be sent to the Application/User UART. Open a terminal emulator to that port to see the output with the following options:
Parameter | Value |
---|---|
Speed (baud) | 115200 |
Data bits | 8 |
Stop bits | 1 |
Parity | None |
Flow control | None |
Once a device has been flashed with this example, it can now join and operate in an existing Thread network. The following sections assume that a Thread network is already active, and has at least one OpenThread Border Router.
The first step to bring the Matter device onto the network is to provision it. Our example accomplishes this with Bluetooth Low Energy (BLE) and the CHIPTool mobile app.
To provision this example onto a Thread network, the device must be discoverable over Bluetooth LE. BLE advertising is started by pressing the right button (less than 1000ms), labeled BTN-2
on the silkscreen. Once the device is fully provisioned, BLE advertising will stop.
In this example, the provisioning procedure (called Rendezvous) is done over Bluetooth LE between a Matter device (pump-app) and the Matter controller (CHIPTool), where the controller has the commissioner role.
To start the rendezvous, the controller must get the commissioning information from the Matter device.
This is done by scanning a QR code. A URL will be displayed on the pump-app's log (UART terminal). It will look like the following:
SetupQRCode: [MT:.81TM -00 0C9SS0] Copy/paste the below URL in a browser to see the QR Code: https://dhrishi.github.io/connectedhomeip/qrcode.html?data=CH%3A.81TM%20-00%200C9SS0
You can directly navigate to the webpage URL displayed (which has QR payload pre-loaded). Alternatively, you can navigate to the QR code generator and enter in the payload shown in SetupQRCode
(in this case MT:.81TM -00 0C9SS0
).
Once the Matter device is provisioned and operating on the network, CHIPTool can be used to control the device. During the provisioning process, the Matter device would have sent one of its newly assigned IPv6 addresses to the CHIPTool.
In the app, you should see an On/Off cluster; this corresponds to the pump-app. You can now control the pump-app Matter device from the smartphone!
For technical support, please consider creating a post on TI's E2E forum. Additionally, we welcome any feedback.