Skip to content

ESP Matter + Arduino as IDF Component Light example #10290

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

Merged
merged 48 commits into from
Sep 18, 2024
Merged
Changes from 1 commit
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
45261f9
feat(matter): partition file for matter
SuGlider Sep 4, 2024
2d5ed93
feat(matter): matter light source code
SuGlider Sep 4, 2024
8c39ce0
feat(matter): adds sdkconfig and CMake files
SuGlider Sep 4, 2024
4f0f2d0
fix(matter): wrong folder name
SuGlider Sep 4, 2024
293f066
feat(matter): include example into registry
SuGlider Sep 4, 2024
a8df9ec
Merge branch 'espressif:master' into esp_matter_light_example
SuGlider Sep 12, 2024
2951f6a
fix(matter): error with type in wrong place
SuGlider Sep 12, 2024
e86952f
Merge branch 'espressif:master' into esp_matter_light_example
SuGlider Sep 14, 2024
37ed1d5
feat(matter): add readme documentation
SuGlider Sep 14, 2024
d418363
feat(matter): remove soc with no wifi or no ble
SuGlider Sep 14, 2024
04391c9
feat(matter): adjust all sdkconfig files
SuGlider Sep 14, 2024
196f63d
feat(matter): improve code and led status
SuGlider Sep 14, 2024
63c8e83
feat(matter): add button and led gpio with kconfig
SuGlider Sep 14, 2024
6fe9d26
fix(matter): remove commented lines
SuGlider Sep 14, 2024
1be6b0e
fix(matter): remove commented lines
SuGlider Sep 14, 2024
365bb07
Merge branch 'master' into esp_matter_light_example
SuGlider Sep 16, 2024
b392e8a
feat(matter): added a 2.4GHz SSID note
SuGlider Sep 16, 2024
f30ad99
feat(matter): arduino managed comonent version
SuGlider Sep 16, 2024
bae7b60
Merge branch 'master' into esp_matter_light_example
SuGlider Sep 17, 2024
fe50297
feat(matter): adds information about google
SuGlider Sep 17, 2024
2c18489
feat(matter): arduino component version
SuGlider Sep 17, 2024
ed71437
Merge branch 'master' into esp_matter_light_example
SuGlider Sep 17, 2024
2dd56d1
ci(pre-commit): Apply automatic fixes
pre-commit-ci-lite[bot] Sep 18, 2024
cafb78d
Merge branch 'master' into esp_matter_light_example
SuGlider Sep 18, 2024
9f1c706
fix(typo): typo and commentaries
SuGlider Sep 18, 2024
6b56195
fix(typo): typo and commentaries
SuGlider Sep 18, 2024
40ead46
fix(typo): typo and commentaries
SuGlider Sep 18, 2024
e361e75
fix(typo): typo and commentaries
SuGlider Sep 18, 2024
14eee60
fix(typo): typo and commentaries
SuGlider Sep 18, 2024
d46fafc
fix(typo): typo and commentaries
SuGlider Sep 18, 2024
ea5f261
fix(typo): typo and commentaries
SuGlider Sep 18, 2024
4d576d4
fix(typo): typo and commentaries
SuGlider Sep 18, 2024
99dc865
fix(typo): typo and commentaries
SuGlider Sep 18, 2024
91a06ee
fix(typo): typo and commentaries
SuGlider Sep 18, 2024
7efd65e
fix(typo): typo and commentaries
SuGlider Sep 18, 2024
e7623e2
fix(typo): typo and commentaries
SuGlider Sep 18, 2024
fd02781
fix(typo): typo and commentaries
SuGlider Sep 18, 2024
a9527de
fix(typo): typo and commentaries
SuGlider Sep 18, 2024
dc90ee8
fix(typo): typo and commentaries
SuGlider Sep 18, 2024
27383e0
fix(typo): typo and commentaries
SuGlider Sep 18, 2024
bdf04b4
fix(typo): typo and commentaries
SuGlider Sep 18, 2024
13a95f8
fix(typo): typo and commentaries
SuGlider Sep 18, 2024
7713e03
fix(matter): spell check ignore for CI
SuGlider Sep 18, 2024
9b55b76
ci(pre-commit): Apply automatic fixes
pre-commit-ci-lite[bot] Sep 18, 2024
5b5a2a8
fix(matter): spell check ignore for CI
SuGlider Sep 18, 2024
ca63443
fix(matter): spell check ignore for CI
SuGlider Sep 18, 2024
9db98d3
fix(matter): spell check ignore for CI
SuGlider Sep 18, 2024
fef5da3
ci(pre-commit): Apply automatic fixes
pre-commit-ci-lite[bot] Sep 18, 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
Prev Previous commit
ci(pre-commit): Apply automatic fixes
  • Loading branch information
pre-commit-ci-lite[bot] authored Sep 18, 2024
commit fef5da397553efed8a1060019ac720fceb0b7011
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ void setup() {
cluster_t *color_control_cluster = cluster::get(endpoint, ColorControl::Id);
attribute_t *current_x_attribute = attribute::get(color_control_cluster, ColorControl::Attributes::CurrentX::Id);
attribute::set_deferred_persistence(current_x_attribute);
attribute_t *current_y_attribute = attribute::get(color_control_cluster, ColorControl::Attributes::CurrentY::Id); // codespell:ignore
attribute_t *current_y_attribute = attribute::get(color_control_cluster, ColorControl::Attributes::CurrentY::Id); // codespell:ignore
attribute::set_deferred_persistence(current_y_attribute);
attribute_t *color_temp_attribute = attribute::get(color_control_cluster, ColorControl::Attributes::ColorTemperatureMireds::Id);
attribute::set_deferred_persistence(color_temp_attribute);
Expand Down