Skip to content

Commit

Permalink
Merge branch 'doc_update' into 'main'
Browse files Browse the repository at this point in the history
Documentation updates

See merge request app-frameworks/esp-matter!524
  • Loading branch information
dhrishi committed Oct 31, 2023
2 parents d53cdb1 + 37fc0b3 commit 4c9822e
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 16 deletions.
40 changes: 28 additions & 12 deletions SUPPORTED_DEVICE_TYPES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

Below are the device types supported by SDK

Utility Device Types
1. Root Node
2. Power Source
3. OTA Requestor
4. OTA Provider
5. Aggregator
6. Bridged Node

Application Device Types
1. On/Off Light
2. Dimmable Light
3. Color Temperature Light
Expand All @@ -14,15 +23,22 @@ Below are the device types supported by SDK
10. Dimmable Plugin Unit
11. Fan
12. Thermostat
13. Aggregator
14. Bridged Node
15. Door Lock
16. Window Covering Device
17. Temperature Sensor
18. Humidity Sensor
19. Occupancy Sensor
20. Contact Sensor
21. Light Sensor
22. Pressure Sensor
23. Flow Sensor
24. Pump
13. Air Quality Sensor
14. Air Purifier
15. Dishwasher
16. Laundry Washer
17. Door Lock
18. Window Covering
19. Temperature Sensor
20. Humidity Sensor
21. Occupancy Sensor
22. Contact Sensor
23. Light Sensor
24. Pressure Sensor
25. Flow Sensor
26. Pump
27. Mode Select
28. Room Air Conditioner
29. Temperature Controlled Cabinet
30. Refrigerator
31. Robotic Vacuum Cleaner
4 changes: 2 additions & 2 deletions components/esp_matter/esp_matter_endpoint.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1399,7 +1399,7 @@ esp_err_t add(endpoint_t *endpoint, config_t *config)
}
} /** refrigerator **/

namespace robotic_vaccum_cleaner{
namespace robotic_vacuum_cleaner{

uint32_t get_device_type_id()
{
Expand Down Expand Up @@ -1437,7 +1437,7 @@ esp_err_t add(endpoint_t *endpoint, config_t *config)

return ESP_OK;
}
} /** robotic_vaccum_cleaner **/
} /** robotic_vacuum_cleaner **/

} /* endpoint */

Expand Down
4 changes: 2 additions & 2 deletions components/esp_matter/esp_matter_endpoint.h
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,7 @@ endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_dat
esp_err_t add(endpoint_t *endpoint, config_t *config);
} /** refrigerator **/

namespace robotic_vaccum_cleaner{
namespace robotic_vacuum_cleaner{
typedef struct config {
cluster::descriptor::config_t descriptor;
cluster::identify::config_t identify;
Expand All @@ -590,7 +590,7 @@ uint32_t get_device_type_id();
uint8_t get_device_type_version();
endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data);
esp_err_t add(endpoint_t *endpoint, config_t *config);
} /** robotic_vaccum_cleaner **/
} /** robotic_vacuum_cleaner **/

} /* endpoint */

Expand Down

0 comments on commit 4c9822e

Please sign in to comment.