mirror of
https://github.com/espressif/esp-matter.git
synced 2026-04-27 19:13:13 +00:00
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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user