@@ -1561,6 +1561,44 @@ esp_err_t add(endpoint_t *endpoint, config_t *config)
1561
1561
}
1562
1562
} /* water_leak_detector */
1563
1563
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
+
1564
1602
namespace rain_sensor {
1565
1603
uint32_t get_device_type_id ()
1566
1604
{
0 commit comments