Skip to content

Commit 86df2fe

Browse files
committed
Merge branch 'device/water_freeze_detector' into 'main'
Add water freeze detector device type See merge request app-frameworks/esp-matter!689
2 parents 67de7b4 + 09d1ef4 commit 86df2fe

File tree

5 files changed

+62
-1
lines changed

5 files changed

+62
-1
lines changed

SUPPORTED_DEVICE_TYPES.md

+1
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ g. Sensors
5555
8. Smoke CO Alarm
5656
9. Water Leak Detector
5757
10. Rain Sensor
58+
11. Water Freeze Detector
5859

5960
h. Robotic
6061
1. Robotic Vacuum Cleaner

components/esp_matter/esp_matter_endpoint.cpp

+38
Original file line numberDiff line numberDiff line change
@@ -1561,6 +1561,44 @@ esp_err_t add(endpoint_t *endpoint, config_t *config)
15611561
}
15621562
} /* water_leak_detector */
15631563

1564+
namespace water_freeze_detector {
1565+
uint32_t get_device_type_id()
1566+
{
1567+
return ESP_MATTER_WATER_FREEZE_DETECTOR_DEVICE_TYPE_ID;
1568+
}
1569+
1570+
uint8_t get_device_type_version()
1571+
{
1572+
return ESP_MATTER_WATER_FREEZE_DETECTOR_DEVICE_TYPE_VERSION;
1573+
}
1574+
1575+
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data)
1576+
{
1577+
endpoint_t *endpoint = endpoint::create(node, flags, priv_data);
1578+
add(endpoint, config);
1579+
return endpoint;
1580+
}
1581+
1582+
esp_err_t add(endpoint_t *endpoint, config_t *config)
1583+
{
1584+
if (!endpoint) {
1585+
ESP_LOGE(TAG, "Endpoint cannot be NULL");
1586+
return ESP_ERR_INVALID_ARG;
1587+
}
1588+
esp_err_t err = add_device_type(endpoint, get_device_type_id(), get_device_type_version());
1589+
if (err != ESP_OK) {
1590+
ESP_LOGE(TAG, "Failed to add device type id:%" PRIu32 ",err: %d", get_device_type_id(), err);
1591+
return err;
1592+
}
1593+
1594+
descriptor::create(endpoint, &(config->descriptor), CLUSTER_FLAG_SERVER);
1595+
identify::create(endpoint, &(config->identify), CLUSTER_FLAG_SERVER);
1596+
boolean_state::create(endpoint, &(config->boolean_state), CLUSTER_FLAG_SERVER);
1597+
1598+
return ESP_OK;
1599+
}
1600+
} /* water_freeze_detector */
1601+
15641602
namespace rain_sensor {
15651603
uint32_t get_device_type_id()
15661604
{

components/esp_matter/esp_matter_endpoint.h

+15
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,8 @@
104104
#define ESP_MATTER_ELECTRICAL_SENSOR_DEVICE_TYPE_VERSION 1
105105
#define ESP_MATTER_OVEN_DEVICE_TYPE_ID 0x007B
106106
#define ESP_MATTER_OVEN_DEVICE_TYPE_VERSION 1
107+
#define ESP_MATTER_WATER_FREEZE_DETECTOR_DEVICE_TYPE_ID 0x0041
108+
#define ESP_MATTER_WATER_FREEZE_DETECTOR_DEVICE_TYPE_VERSION 1
107109

108110
namespace esp_matter {
109111

@@ -638,6 +640,19 @@ endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_dat
638640
esp_err_t add(endpoint_t *endpoint, config_t *config);
639641
} /* water_leak_detector */
640642

643+
namespace water_freeze_detector {
644+
typedef struct config {
645+
cluster::descriptor::config_t descriptor;
646+
cluster::identify::config_t identify;
647+
cluster::boolean_state::config_t boolean_state;
648+
} config_t;
649+
650+
uint32_t get_device_type_id();
651+
uint8_t get_device_type_version();
652+
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data);
653+
esp_err_t add(endpoint_t *endpoint, config_t *config);
654+
} /* water_freeze_detector */
655+
641656
namespace rain_sensor {
642657
typedef struct config {
643658
cluster::descriptor::config_t descriptor;

examples/all_device_types_app/main/device_types.h

+3-1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ enum device_type_enum {
3838
ESP_MATTER_DISH_WASHER,
3939
ESP_MATTER_SMOKE_CO_ALARM,
4040
ESP_MATTER_WATER_LEAK_DETECTOR,
41+
ESP_MATTER_WATER_FREEZE_DETECTOR,
4142
ESP_MATTER_POWER_SOURCE,
4243
ESP_MATTER_RAIN_SENSOR,
4344
ESP_MATTER_ELECTRICAL_SENSOR,
@@ -86,9 +87,10 @@ const device_type_name device_type_list[ESP_MATTER_DEVICE_TYPE_MAX] = {
8687
{"dish_washer", ESP_MATTER_DISH_WASHER},
8788
{"smoke_co_alarm", ESP_MATTER_SMOKE_CO_ALARM},
8889
{"water_leak_detector", ESP_MATTER_WATER_LEAK_DETECTOR},
90+
{"water_freeze_detector", ESP_MATTER_WATER_FREEZE_DETECTOR},
8991
{"power_source", ESP_MATTER_POWER_SOURCE},
9092
{"rain_sensor", ESP_MATTER_RAIN_SENSOR},
9193
{"electrical_sensor", ESP_MATTER_ELECTRICAL_SENSOR},
9294
{"oven", ESP_MATTER_OVEN}
93-
};
95+
};
9496
} /* namespace esp_matter */

examples/all_device_types_app/main/esp_matter_console_helpers.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -375,6 +375,11 @@ int create(uint8_t device_type_index)
375375
endpoint = esp_matter::endpoint::water_leak_detector::create(node, &water_leak_detector_config, ENDPOINT_FLAG_NONE, NULL);
376376
break;
377377
}
378+
case ESP_MATTER_WATER_FREEZE_DETECTOR: {
379+
esp_matter::endpoint::water_freeze_detector::config_t water_freeze_detector_config;
380+
endpoint = esp_matter::endpoint::water_freeze_detector::create(node, &water_freeze_detector_config, ENDPOINT_FLAG_NONE, NULL);
381+
break;
382+
}
378383
case ESP_MATTER_POWER_SOURCE: {
379384
esp_matter::endpoint::power_source_device::config_t power_source_device_config;
380385
endpoint = esp_matter::endpoint::power_source_device::create(node, &power_source_device_config, ENDPOINT_FLAG_NONE, NULL);

0 commit comments

Comments
 (0)