Skip to content

Commit 538efe3

Browse files
feat(matter): adds new Temperature Sensor Matter Endpoint (#10698)
* feat(matter): adds new temperature sensor matter endpoint * feat(matter): commentaries review and fixes * feat(matter): commentaries review and fixes * feat(matter): commentaries review and fixes * feat(matter): commentaries review and fixes * feat(matter): commentaries review and fixes * feat(matter): commentaries review and fixes * feat(matter): general commentaries and code review * feat(matter): keeping arduino style for local variables (lower case) * feat(matter): applies a generic temperature unit to the implementation and example * fix(matter): fixed problem with begin(float) implementation * fix(matter): fixed begin(float) initiallization * feat(matter): updated matter temperature keywords with new api * ci(pre-commit): Apply automatic fixes * fix(matter): fixed code spell ci errors in matter temperature sensor --------- Co-authored-by: pre-commit-ci-lite[bot] <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com>
1 parent 2028ba4 commit 538efe3

File tree

7 files changed

+269
-0
lines changed

7 files changed

+269
-0
lines changed

CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,7 @@ set(ARDUINO_LIBRARY_Matter_SRCS
175175
libraries/Matter/src/MatterEndpoints/MatterColorLight.cpp
176176
libraries/Matter/src/MatterEndpoints/MatterEnhancedColorLight.cpp
177177
libraries/Matter/src/MatterEndpoints/MatterFan.cpp
178+
libraries/Matter/src/MatterEndpoints/MatterTemperatureSensor.cpp
178179
libraries/Matter/src/Matter.cpp)
179180

180181
set(ARDUINO_LIBRARY_PPP_SRCS
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
// Copyright 2024 Espressif Systems (Shanghai) PTE LTD
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
15+
/*
16+
* This example is an example code that will create a Matter Device which can be
17+
* commissioned and controlled from a Matter Environment APP.
18+
* Additionally the ESP32 will send debug messages indicating the Matter activity.
19+
* Turning DEBUG Level ON may be useful to following Matter Accessory and Controller messages.
20+
*/
21+
22+
// Matter Manager
23+
#include <Matter.h>
24+
#include <WiFi.h>
25+
26+
// List of Matter Endpoints for this Node
27+
// Matter Temperature Sensor Endpoint
28+
MatterTemperatureSensor SimulatedTemperatureSensor;
29+
30+
// WiFi is manually set and started
31+
const char *ssid = "your-ssid"; // Change this to your WiFi SSID
32+
const char *password = "your-password"; // Change this to your WiFi password
33+
34+
// Simulate a temperature sensor - add your preferred temperature sensor library code here
35+
float getSimulatedTemperature() {
36+
// The Endpoint implementation keeps an int16_t as internal value information,
37+
// which stores data in 1/100th of any temperature unit
38+
static float simulatedTempHWSensor = -10.0;
39+
40+
// it will increase from -10C to 10C in 0.5C steps to simulate a temperature sensor
41+
simulatedTempHWSensor = simulatedTempHWSensor + 0.5;
42+
if (simulatedTempHWSensor > 10) {
43+
simulatedTempHWSensor = -10;
44+
}
45+
46+
return simulatedTempHWSensor;
47+
}
48+
49+
void setup() {
50+
Serial.begin(115200);
51+
52+
// Manually connect to WiFi
53+
WiFi.begin(ssid, password);
54+
// Wait for connection
55+
while (WiFi.status() != WL_CONNECTED) {
56+
delay(500);
57+
Serial.print(".");
58+
}
59+
Serial.println();
60+
61+
// set initial temperature sensor measurement
62+
// Simulated Sensor - it shall initially print -25 degrees and then move to the -10 to 10 range
63+
SimulatedTemperatureSensor.begin(-25.00);
64+
65+
// Matter beginning - Last step, after all EndPoints are initialized
66+
Matter.begin();
67+
68+
// Check Matter Accessory Commissioning state, which may change during execution of loop()
69+
if (!Matter.isDeviceCommissioned()) {
70+
Serial.println("");
71+
Serial.println("Matter Node is not commissioned yet.");
72+
Serial.println("Initiate the device discovery in your Matter environment.");
73+
Serial.println("Commission it to your Matter hub with the manual pairing code or QR code");
74+
Serial.printf("Manual pairing code: %s\r\n", Matter.getManualPairingCode().c_str());
75+
Serial.printf("QR code URL: %s\r\n", Matter.getOnboardingQRCodeUrl().c_str());
76+
// waits for Matter Temperature Sensor Commissioning.
77+
uint32_t timeCount = 0;
78+
while (!Matter.isDeviceCommissioned()) {
79+
delay(100);
80+
if ((timeCount++ % 50) == 0) { // 50*100ms = 5 sec
81+
Serial.println("Matter Node not commissioned yet. Waiting for commissioning.");
82+
}
83+
}
84+
Serial.println("Matter Node is commissioned and connected to Wi-Fi. Ready for use.");
85+
}
86+
}
87+
88+
void loop() {
89+
Serial.printf("Current Temperature is %.02f <Temperature Units>\r\n", SimulatedTemperatureSensor.getTemperature());
90+
// update the temperature sensor value every 5 seconds
91+
// Matter APP shall display the updated temperature
92+
delay(5000);
93+
SimulatedTemperatureSensor.setTemperature(getSimulatedTemperature());
94+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"fqbn_append": "PartitionScheme=huge_app",
3+
"requires": [
4+
"CONFIG_SOC_WIFI_SUPPORTED=y",
5+
"CONFIG_ESP_MATTER_ENABLE_DATA_MODEL=y"
6+
]
7+
}

libraries/Matter/keywords.txt

+3
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ MatterEndPoint KEYWORD1
1818
MatterFan KEYWORD1
1919
FanMode_t KEYWORD1
2020
FanModeSequence_t KEYWORD1
21+
MatterTemperatureSensor KEYWORD1
2122

2223
#######################################
2324
# Methods and Functions (KEYWORD2)
@@ -62,6 +63,8 @@ setMode KEYWORD2
6263
getMode KEYWORD2
6364
onChangeMode KEYWORD2
6465
onChangeSpeedPercent KEYWORD2
66+
setTemperature KEYWORD2
67+
getTemperature KEYWORD2
6568

6669
#######################################
6770
# Constants (LITERAL1)

libraries/Matter/src/Matter.h

+2
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
#include <MatterEndpoints/MatterColorLight.h>
2727
#include <MatterEndpoints/MatterEnhancedColorLight.h>
2828
#include <MatterEndpoints/MatterFan.h>
29+
#include <MatterEndpoints/MatterTemperatureSensor.h>
2930

3031
using namespace esp_matter;
3132

@@ -58,6 +59,7 @@ class ArduinoMatter {
5859
friend class MatterColorLight;
5960
friend class MatterEnhancedColorLight;
6061
friend class MatterFan;
62+
friend class MatterTemperatureSensor;
6163

6264
protected:
6365
static void _init();
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
1+
// Copyright 2024 Espressif Systems (Shanghai) PTE LTD
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
15+
#include <sdkconfig.h>
16+
#ifdef CONFIG_ESP_MATTER_ENABLE_DATA_MODEL
17+
18+
#include <Matter.h>
19+
#include <MatterEndpoints/MatterTemperatureSensor.h>
20+
21+
using namespace esp_matter;
22+
using namespace esp_matter::endpoint;
23+
using namespace chip::app::Clusters;
24+
25+
bool MatterTemperatureSensor::attributeChangeCB(uint16_t endpoint_id, uint32_t cluster_id, uint32_t attribute_id, esp_matter_attr_val_t *val) {
26+
bool ret = true;
27+
if (!started) {
28+
log_e("Matter Temperature Sensor device has not begun.");
29+
return false;
30+
}
31+
32+
log_d("Temperature Sensor Attr update callback: endpoint: %u, cluster: %u, attribute: %u, val: %u", endpoint_id, cluster_id, attribute_id, val->val.u32);
33+
return ret;
34+
}
35+
36+
MatterTemperatureSensor::MatterTemperatureSensor() {}
37+
38+
MatterTemperatureSensor::~MatterTemperatureSensor() {
39+
end();
40+
}
41+
42+
bool MatterTemperatureSensor::begin(int16_t _rawTemperature) {
43+
ArduinoMatter::_init();
44+
45+
temperature_sensor::config_t temperature_sensor_config;
46+
temperature_sensor_config.temperature_measurement.measured_value = _rawTemperature;
47+
temperature_sensor_config.temperature_measurement.min_measured_value = nullptr;
48+
temperature_sensor_config.temperature_measurement.max_measured_value = nullptr;
49+
50+
// endpoint handles can be used to add/modify clusters
51+
endpoint_t *endpoint = temperature_sensor::create(node::get(), &temperature_sensor_config, ENDPOINT_FLAG_NONE, (void *)this);
52+
if (endpoint == nullptr) {
53+
log_e("Failed to create Temperature Sensor endpoint");
54+
return false;
55+
}
56+
rawTemperature = _rawTemperature;
57+
setEndPointId(endpoint::get_id(endpoint));
58+
log_i("Temperature Sensor created with endpoint_id %d", getEndPointId());
59+
started = true;
60+
return true;
61+
}
62+
63+
void MatterTemperatureSensor::end() {
64+
started = false;
65+
}
66+
67+
bool MatterTemperatureSensor::setRawTemperature(int16_t _rawTemperature) {
68+
if (!started) {
69+
log_e("Matter Temperature Sensor device has not begun.");
70+
return false;
71+
}
72+
73+
// avoid processing the a "no-change"
74+
if (rawTemperature == _rawTemperature) {
75+
return true;
76+
}
77+
78+
esp_matter_attr_val_t temperatureVal = esp_matter_invalid(NULL);
79+
80+
if (!getAttributeVal(TemperatureMeasurement::Id, TemperatureMeasurement::Attributes::MeasuredValue::Id, &temperatureVal)) {
81+
log_e("Failed to get Temperature Sensor Attribute.");
82+
return false;
83+
}
84+
if (temperatureVal.val.i16 != _rawTemperature) {
85+
temperatureVal.val.i16 = _rawTemperature;
86+
bool ret;
87+
ret = updateAttributeVal(TemperatureMeasurement::Id, TemperatureMeasurement::Attributes::MeasuredValue::Id, &temperatureVal);
88+
if (!ret) {
89+
log_e("Failed to update Fan Speed Percent Attribute.");
90+
return false;
91+
}
92+
rawTemperature = _rawTemperature;
93+
}
94+
log_v("Temperature Sensor set to %.02f Degrees", (float)_rawTemperature / 100.00);
95+
96+
return true;
97+
}
98+
99+
#endif /* CONFIG_ESP_MATTER_ENABLE_DATA_MODEL */
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
// Copyright 2024 Espressif Systems (Shanghai) PTE LTD
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
15+
#pragma once
16+
#include <sdkconfig.h>
17+
#ifdef CONFIG_ESP_MATTER_ENABLE_DATA_MODEL
18+
19+
#include <Matter.h>
20+
#include <MatterEndPoint.h>
21+
22+
class MatterTemperatureSensor : public MatterEndPoint {
23+
public:
24+
MatterTemperatureSensor();
25+
~MatterTemperatureSensor();
26+
// begin Matter Temperature Sensor endpoint with initial float temperature
27+
bool begin(double temperature = 0.00) {
28+
return begin(static_cast<int16_t>(temperature * 100.0f));
29+
}
30+
// this will stop processing Temperature Sensor Matter events
31+
void end();
32+
33+
// set the reported raw temperature
34+
bool setTemperature(double temperature) {
35+
// stores up to 1/100th of a degree precision
36+
int16_t rawValue = static_cast<int16_t>(temperature * 100.0f);
37+
return setRawTemperature(rawValue);
38+
}
39+
// returns the reported float temperature with 1/100th of a degree precision
40+
double getTemperature() {
41+
return (double)rawTemperature / 100.0;
42+
}
43+
// double conversion operator
44+
void operator=(double temperature) {
45+
setTemperature(temperature);
46+
}
47+
// double conversion operator
48+
operator double() {
49+
return (double)getTemperature();
50+
}
51+
52+
// this function is called by Matter internal event processor. It could be overwritten by the application, if necessary.
53+
bool attributeChangeCB(uint16_t endpoint_id, uint32_t cluster_id, uint32_t attribute_id, esp_matter_attr_val_t *val);
54+
55+
protected:
56+
bool started = false;
57+
// implementation keeps temperature in 1/100th of a degree, any temperature unit
58+
int16_t rawTemperature = 0;
59+
// internal function to set the raw temperature value (Matter Cluster)
60+
bool setRawTemperature(int16_t _rawTemperature);
61+
bool begin(int16_t _rawTemperature);
62+
};
63+
#endif /* CONFIG_ESP_MATTER_ENABLE_DATA_MODEL */

0 commit comments

Comments
 (0)