Skip to content

Commit a12774c

Browse files
committed
Merge branch 'oven' into 'main'
Add Oven device type See merge request app-frameworks/esp-matter!728
2 parents bf56832 + 2df2325 commit a12774c

File tree

5 files changed

+72
-1
lines changed

5 files changed

+72
-1
lines changed

SUPPORTED_DEVICE_TYPES.md

+1
Original file line numberDiff line numberDiff line change
@@ -65,3 +65,4 @@ i. Appliance
6565
3. Room Air Conditioner
6666
4. Refrigerator
6767
5. Temperature Controlled Cabinet
68+
6. Oven

components/esp_matter/esp_matter_endpoint.cpp

+38
Original file line numberDiff line numberDiff line change
@@ -1445,6 +1445,44 @@ esp_err_t add(endpoint_t *endpoint, config_t *config)
14451445
}
14461446
} /** refrigerator **/
14471447

1448+
namespace oven {
1449+
1450+
uint32_t get_device_type_id()
1451+
{
1452+
return ESP_MATTER_OVEN_DEVICE_TYPE_ID;
1453+
}
1454+
1455+
uint8_t get_device_type_version()
1456+
{
1457+
return ESP_MATTER_OVEN_DEVICE_TYPE_VERSION;
1458+
}
1459+
1460+
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
1461+
{
1462+
endpoint_t *endpoint = endpoint::create(node, flags, priv_data);
1463+
add(endpoint, config);
1464+
return endpoint;
1465+
}
1466+
1467+
esp_err_t add(endpoint_t *endpoint, config_t *config)
1468+
{
1469+
if (!endpoint) {
1470+
ESP_LOGE(TAG, "Endpoint cannot be NULL");
1471+
return ESP_ERR_INVALID_ARG;
1472+
}
1473+
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
1474+
if (err != ESP_OK) {
1475+
ESP_LOGE(TAG, "Failed to add device type id:%" PRIu32 ",err: %d", get_device_type_id(), err);
1476+
return err;
1477+
}
1478+
1479+
descriptor::create(endpoint, &(config->descriptor), CLUSTER_FLAG_SERVER);
1480+
1481+
return ESP_OK;
1482+
}
1483+
1484+
} /** oven **/
1485+
14481486
namespace robotic_vacuum_cleaner{
14491487

14501488
uint32_t get_device_type_id()

components/esp_matter/esp_matter_endpoint.h

+13
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,8 @@
102102
#define ESP_MATTER_RAIN_SENSOR_DEVICE_TYPE_VERSION 1
103103
#define ESP_MATTER_ELECTRICAL_SENSOR_DEVICE_TYPE_ID 0x0510
104104
#define ESP_MATTER_ELECTRICAL_SENSOR_DEVICE_TYPE_VERSION 1
105+
#define ESP_MATTER_OVEN_DEVICE_TYPE_ID 0x007B
106+
#define ESP_MATTER_OVEN_DEVICE_TYPE_VERSION 1
105107

106108
namespace esp_matter {
107109

@@ -598,6 +600,17 @@ endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_dat
598600
esp_err_t add(endpoint_t *endpoint, config_t *config);
599601
} /** refrigerator **/
600602

603+
namespace oven {
604+
typedef struct config {
605+
cluster::descriptor::config_t descriptor;
606+
} config_t;
607+
608+
uint32_t get_device_type_id();
609+
uint8_t get_device_type_version();
610+
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data);
611+
esp_err_t add(endpoint_t *endpoint, config_t *config);
612+
} /** oven **/
613+
601614
namespace robotic_vacuum_cleaner{
602615
typedef struct config {
603616
cluster::descriptor::config_t descriptor;

examples/all_device_types_app/main/device_types.h

+3-1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ enum device_type_enum {
4141
ESP_MATTER_POWER_SOURCE,
4242
ESP_MATTER_RAIN_SENSOR,
4343
ESP_MATTER_ELECTRICAL_SENSOR,
44+
ESP_MATTER_OVEN,
4445
ESP_MATTER_DEVICE_TYPE_MAX
4546
};
4647

@@ -87,6 +88,7 @@ const device_type_name device_type_list[ESP_MATTER_DEVICE_TYPE_MAX] = {
8788
{"water_leak_detector", ESP_MATTER_WATER_LEAK_DETECTOR},
8889
{"power_source", ESP_MATTER_POWER_SOURCE},
8990
{"rain_sensor", ESP_MATTER_RAIN_SENSOR},
90-
{"electrical_sensor", ESP_MATTER_ELECTRICAL_SENSOR}
91+
{"electrical_sensor", ESP_MATTER_ELECTRICAL_SENSOR},
92+
{"oven", ESP_MATTER_OVEN}
9193
};
9294
} /* namespace esp_matter */

examples/all_device_types_app/main/esp_matter_console_helpers.cpp

+17
Original file line numberDiff line numberDiff line change
@@ -315,6 +315,23 @@ int create(uint8_t device_type_index)
315315
cluster::temperature_control::feature::temperature_number::add(cluster, &temperature_number_config);
316316
break;
317317
}
318+
case ESP_MATTER_OVEN: {
319+
esp_matter::endpoint::oven::config_t oven_config;
320+
endpoint = esp_matter::endpoint::oven::create(node, &oven_config, ENDPOINT_FLAG_NONE, NULL);
321+
322+
esp_matter::endpoint::temperature_controlled_cabinet::config_t temperature_controlled_cabinet_config;
323+
esp_matter::endpoint_t *tcc_endpoint = esp_matter::endpoint::temperature_controlled_cabinet::create(node, &temperature_controlled_cabinet_config, ENDPOINT_FLAG_NONE, NULL);
324+
325+
if (!tcc_endpoint) {
326+
ESP_LOGE(TAG, "Matter create endpoint failed");
327+
return 1;
328+
}
329+
330+
esp_matter::cluster_t *cluster = esp_matter::cluster::get(tcc_endpoint, chip::app::Clusters::TemperatureControl::Id);
331+
cluster::temperature_control::feature::temperature_number::config_t temperature_number_config;
332+
cluster::temperature_control::feature::temperature_number::add(cluster, &temperature_number_config);
333+
break;
334+
}
318335
case ESP_MATTER_AIR_PURIFIER: {
319336
esp_matter::endpoint::air_purifier::config_t air_purifier_config;
320337
endpoint = esp_matter::endpoint::air_purifier::create(node, &air_purifier_config, ENDPOINT_FLAG_NONE, NULL);

0 commit comments

Comments
 (0)