Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev merge ezpi 375 422 425 426 427 #156

Merged
merged 24 commits into from
Jul 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
e273511
adding device_grp features
ezlo-rikenm Jul 2, 2024
df3fff2
adding device-grp
ezlo-rikenm Jul 3, 2024
d1461d9
modifying it similar to scenes
ezlo-rikenm Jul 3, 2024
b900a34
added all device-group features and broadcasts
ezlo-rikenm Jul 4, 2024
3463885
completed task https://jira.mios.com/browse/EZPI-427
ezlo-rikenm Jul 5, 2024
02333bb
merged EZPI-375,422,425,426 into EZPI-427
ezlo-rikenm Jul 16, 2024
a6155f7
code refactor
ezlo-rikenm Jul 16, 2024
6819aa6
bug when removing devGrp_list elements
ezlo-rikenm Jul 17, 2024
cb013d0
Solved the Bug for removed_ids in nvs error
ezlo-rikenm Jul 18, 2024
ee55ca4
added hub.device.group.find command
ezlo-rikenm Jul 18, 2024
e620da0
adding hub.device.item.group.expand
ezlo-rikenm Jul 19, 2024
bf714b2
code-refactoring for device.item.expand
ezlo-rikenm Jul 22, 2024
8306b19
testing dev_item_expand
ezlo-rikenm Jul 23, 2024
997f36e
fixed item-group bugs and code_refactoring
ezlo-rikenm Jul 24, 2024
41ee28f
fixing the device/item_group update incomplete bug
ezlo-rikenm Jul 25, 2024
07b2818
code-refactoring
ezlo-rikenm Jul 25, 2024
7ae18e0
added condition for device/item_grp for isItemState
ezlo-rikenm Jul 26, 2024
647ac38
code refactoring
ezlo-rikenm Jul 29, 2024
2c2f853
fixed bugs in 'hub.device.item.group.expand' method ; Code-refactored
ezlo-rikenm Jul 30, 2024
79faf02
merged scene_enable fix
ezlo-rikenm Jul 31, 2024
bd547b9
code refactoring
ezlo-rikenm Jul 31, 2024
1abbe1f
fixed scene_run_once method
ezlo-rikenm Jul 31, 2024
c7ad1c2
fixed block-id and flag edit options
ezlo-rikenm Jul 31, 2024
3acb604
merging lastest development for test
ezlo-rikenm Jul 31, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -134,4 +134,12 @@ const char *ezlopi_hub_room_reordered_str = "hub.room.reordered";

const char *ezlopi_hub_modes_changed_str = "hub.modes.changed";

const char *ezlopi_hub_device_group_created = "hub.device.group.created";
const char *ezlopi_hub_device_group_deleted = "hub.device.group.deleted";
const char *ezlopi_hub_device_group_updated = "hub.device.group.updated";

const char *ezlopi_hub_item_group_created = "hub.item.group.created";
const char *ezlopi_hub_item_group_deleted = "hub.item.group.deleted";
const char *ezlopi_hub_item_group_updated = "hub.item.group.updated";

#endif // __EZLOPI_METHODS_STR_H__
Original file line number Diff line number Diff line change
Expand Up @@ -134,4 +134,12 @@ extern const char *ezlopi_hub_room_reordered_str;

extern const char *ezlopi_hub_modes_changed_str;

extern const char *ezlopi_hub_device_group_created;
extern const char *ezlopi_hub_device_group_deleted;
extern const char *ezlopi_hub_device_group_updated;

extern const char *ezlopi_hub_item_group_created;
extern const char *ezlopi_hub_item_group_deleted;
extern const char *ezlopi_hub_item_group_updated;

#endif // __EZLOPI_METHODS_STR_H__
Loading