Merge branch 'fix-attribute-types' into 'main'

components/esp-matter: fix types for on_time and off_wait_time

See merge request app-frameworks/esp-matter!1332
This commit is contained in:
Hrishikesh Dhayagude
2025-12-05 16:44:17 +08:00
4 changed files with 12 additions and 8 deletions
@@ -211,8 +211,8 @@ namespace lighting {
typedef struct config {
bool global_scene_control;
nullable<uint16_t> on_time;
nullable<uint16_t> off_wait_time;
uint16_t on_time;
uint16_t off_wait_time;
nullable<uint8_t> start_up_on_off;
config() : global_scene_control(1), on_time(0), off_wait_time(0), start_up_on_off(0) {}
} config_t;