-
Notifications
You must be signed in to change notification settings - Fork 31
[SL-ONLY] Feature/rangehood app #698
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
Draft
bhmanda-silabs
wants to merge
11
commits into
main
Choose a base branch
from
feature/rangehood_app
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from 5 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
fa46be1
Added rangehood app
bhmanda-silabs d1ba54b
Cleanedup rangehoodapp
bhmanda-silabs 198abad
Resolved build errors
bhmanda-silabs cf49e8d
Added fanDelegate
bhmanda-silabs cec579c
Added button,LCD functionality to rangehood-app
bhmanda-silabs 497571f
Restyled by whitespace
restyled-commits bf8f9f9
Restyled by clang-format
restyled-commits 0cfc7bd
Restyled by gn
restyled-commits be0ec91
Removed speed related code
bhmanda-silabs 9774090
Removed duplicate file
bhmanda-silabs 10571ae
Resolved review comments
bhmanda-silabs File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| # Copyright (c) 2025 Project CHIP Authors | ||
| # | ||
| # Licensed under the Apache License, Version 2.0 (the "License"); | ||
| # you may not use this file except in compliance with the License. | ||
| # You may obtain a copy of the License at | ||
| # | ||
| # http://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # Unless required by applicable law or agreed to in writing, software | ||
| # distributed under the License is distributed on an "AS IS" BASIS, | ||
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| # See the License for the specific language governing permissions and | ||
| # limitations under the License. | ||
|
|
||
| import("//build_overrides/chip.gni") | ||
| import("${chip_root}/examples/common/pigweed/pigweed_rpcs.gni") | ||
| import("${chip_root}/src/app/chip_data_model.gni") | ||
|
|
||
| config("config") { | ||
| include_dirs = [ "common/include" ] | ||
| } | ||
|
|
||
| chip_data_model("rangehood-app-common") { | ||
| zap_file = "rangehood-app.zap" | ||
| is_server = true | ||
| } |
82 changes: 82 additions & 0 deletions
82
examples/rangehood-app/rangehood-app-common/include/ExtractorHoodEndpoint.h
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,82 @@ | ||
| /* | ||
| * | ||
| * Copyright (c) 2024 Project CHIP Authors | ||
| * Copyright (c) 2019 Google LLC. | ||
| * All rights reserved. | ||
| * | ||
| * Licensed under the Apache License, Version 2.0 (the "License"); | ||
| * you may not use this file except in compliance with the License. | ||
| * You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, software | ||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| * See the License for the specific language governing permissions and | ||
| * limitations under the License. | ||
| */ | ||
|
|
||
| #pragma once | ||
|
|
||
| #include <stdbool.h> | ||
| #include <stdint.h> | ||
|
|
||
| #include <app/clusters/fan-control-server/fan-control-delegate.h> | ||
| #include <app/clusters/fan-control-server/fan-control-server.h> | ||
| #include <lib/core/CHIPError.h> | ||
|
|
||
| using namespace chip; | ||
| using namespace chip::app; | ||
| using namespace chip::app::Clusters::FanControl; | ||
| using Protocols::InteractionModel::Status; | ||
|
|
||
| namespace chip { | ||
| namespace app { | ||
| namespace Clusters { | ||
| namespace ExtractorHood { | ||
|
|
||
| class FanDelegate : public FanControl::Delegate | ||
| { | ||
| public: | ||
| /** | ||
| * @brief | ||
| * This method handles the step command. This will happen as fast as possible. | ||
| * | ||
| * @param[in] aDirection the direction in which the speed should step | ||
| * @param[in] aWrap whether the speed should wrap or not | ||
| * @param[in] aLowestOff whether the device should consider the lowest setting as off | ||
| * | ||
| * @return Success On success. | ||
| * @return Other Value indicating it failed to execute the command. | ||
| */ | ||
| Status HandleStep(StepDirectionEnum aDirection, bool aWrap, bool aLowestOff) override; | ||
|
|
||
| FanDelegate(EndpointId aEndpoint) | ||
| : FanControl::Delegate(aEndpoint), mEndpoint(aEndpoint) {} | ||
|
|
||
| protected: | ||
| EndpointId mEndpoint = 0; | ||
|
||
| }; | ||
| class ExtractorHoodEndpoint | ||
| { | ||
| public: | ||
| ExtractorHoodEndpoint(EndpointId endpointId) : mEndpointId(endpointId), mFanDelegate(mEndpointId) {} | ||
|
|
||
| /** | ||
| * @brief Initialize the ExtractorHood endpoint. | ||
| */ | ||
| CHIP_ERROR Init(); | ||
|
|
||
| // Accessor for registering the fan control delegate | ||
| FanDelegate * GetFanDelegate() { return &mFanDelegate; } | ||
|
|
||
| private: | ||
| EndpointId mEndpointId = kInvalidEndpointId; | ||
| FanDelegate mFanDelegate; | ||
| }; | ||
|
|
||
| } // namespace ExtractorHood | ||
| } // namespace Clusters | ||
| } // namespace app | ||
| } // namespace chip | ||
56 changes: 56 additions & 0 deletions
56
examples/rangehood-app/rangehood-app-common/include/LightEndpoint.h
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,56 @@ | ||
| /* | ||
| * | ||
| * Copyright (c) 2025 Project CHIP Authors | ||
| * All rights reserved. | ||
| * | ||
| * Licensed under the Apache License, Version 2.0 (the "License"); | ||
| * you may not use this file except in compliance with the License. | ||
| * You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, software | ||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| * See the License for the specific language governing permissions and | ||
| * limitations under the License. | ||
| */ | ||
|
|
||
| #pragma once | ||
|
|
||
| #include <app/clusters/on-off-server/on-off-server.h> | ||
| #include <lib/core/CHIPError.h> | ||
|
|
||
| namespace chip { | ||
| namespace app { | ||
| namespace Clusters { | ||
| namespace Light { | ||
|
|
||
| class LightEndpoint | ||
| { | ||
| public: | ||
| LightEndpoint(EndpointId endpointId) : mEndpointId(endpointId) {} | ||
|
|
||
| /** | ||
| * @brief Initialize the Light endpoint. | ||
| */ | ||
| CHIP_ERROR Init(); | ||
|
|
||
| /** | ||
| * @brief Handle the "on/off" command for the Light. | ||
| */ | ||
| bool GetOnOffState(); | ||
|
|
||
| /** | ||
| * @brief Set On/Off state for the Light. | ||
| */ | ||
| void SetOnOffState(bool state); | ||
|
|
||
| private: | ||
| EndpointId mEndpointId = kInvalidEndpointId; | ||
| }; | ||
|
|
||
| } // namespace Light | ||
| } // namespace Clusters | ||
| } // namespace app | ||
| } // namespace chip |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ideally constructor should be before other functions