Skip to content

Zigbee Temperature Sensor

silabs-JimL edited this page Dec 29, 2020 · 1 revision
Table of Contents

Temperature Sensor

1. Summary

On the WSTK (Wireless Starter Kit), there is a temperature sensor Si7021. In this example, we will demostrate how we develop a Zigbee temperature sensor based on the WSTK.

Below is the hardware layout of SLWSTK600B:

2. Gecko SDK version

Gecko SDK Suite 3.1.

3. Hardware Required

  • 2 pcs WSTK

4. Connections Required

Form a Zigbee network on one of the WSTK, and then join the other WSTK into the network.

5. Setup

  1. Create a ZigbeeMinimal project, name it with "Z3TemperatureSensor" and select the "BRD4164A" (the board type of your kit) as the board.

  2. In "ZCL Clusters" tab, select endpoint 1, then in "Zigbee device type" field, change it to HA devices-->HA Temperature Sensor. With this step, the server side of cluster "Temperature Measurement" is selected automatically.

  3. In Zigbee Stack tab, change device type to Sleepy End Device.

  4. Enable the following plugins:

    • Reporting
    • Idle/Sleep
    • End Device Support
    • Temperature Measurement Server Cluster
    • Temperature Si7021
    • I2C Driver
  5. In plugin "Idle/Sleep", in the properties, enable the option Stay awake when NOT joined

  6. In "Callbacks" tab, enable the following callbacks:

    • emberAfMainInitCallback
    • halSleepCallback
  7. Save and generate the project.

  8. Implement the two callbacks.

    void emberAfMainInitCallback(void)
    {
    	GPIO_PinModeSet(BSP_I2CSENSOR_ENABLE_PORT, BSP_I2CSENSOR_ENABLE_PIN, gpioModePushPull, 1);
    }
    
    void halSleepCallback(boolean enter, SleepModes sleepMode)
    {
    	if (enter) {
    		GPIO_PinModeSet(BSP_I2CSENSOR_ENABLE_PORT, BSP_I2CSENSOR_ENABLE_PIN, gpioModePushPull, 0);
    	} else {
    		GPIO_PinModeSet(BSP_I2CSENSOR_ENABLE_PORT, BSP_I2CSENSOR_ENABLE_PIN, gpioModePushPull, 1);
    	}
    }
  9. Save and build.

6. How It Works

  1. Flash the application into one WSTK, and join it to a Zigbee network.
  2. Setup binding on the sensor, so that the temperature can be reported to the bound device. e.g. with the following command, bind the cluster 0x402 of local endpoint 1 to end point 1 of the remote device 000B57FFFE07A7E3.
    option binding-table set 0 0x0402 1 1 {000B57FFFE07A7E3}
    
  3. After that, the device will report the temperature periodically.

7. .sls Projects Used

8. How to Port to Another Part

This example can be used on any parts. Below are the steps of porting it to other part:

  • Import the .sls file into Simplicity Studio
  • Open the .isc file of each project, turn to "General" tab, hit button "Edit Architecture", then select the board and part.

9. References

Clone this wiki locally