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

[Linux] Matter Linux Water Leak Detector Example #35392

Merged
merged 25 commits into from
Oct 7, 2024
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
da2152d
[Linux] Matter Linux Water Leak Detector Example
lboue Sep 4, 2024
c566aa8
Update README.md
lboue Sep 4, 2024
4026aa0
Update water-leak-detector-app.zap
lboue Sep 4, 2024
ec2af87
Symlinks
lboue Sep 4, 2024
e22d4c3
New sym links
lboue Sep 4, 2024
1882b76
Update README.md
lboue Sep 4, 2024
abc1ab4
Create water-leak-detector-app.matter
lboue Sep 4, 2024
355db35
Update water-leak-detector-app.matter
lboue Sep 4, 2024
42d21b4
Update README.md
lboue Sep 4, 2024
589d906
Update water-leak-detector-app.matter
lboue Sep 4, 2024
0b1e3f9
Update water-leak-detector-app.zap
lboue Sep 4, 2024
b451013
Update water-leak-detector-app.matter
lboue Sep 4, 2024
c20cfab
Merge branch 'master' into Linux_WLD
lboue Sep 5, 2024
31bc082
Merge branch 'master' into Linux_WLD
lboue Sep 5, 2024
54d17fd
Update water-leak-detector-app.zap
lboue Sep 8, 2024
343d2f0
Update water-leak-detector-app.matter
lboue Sep 8, 2024
70bbdd0
Merge branch 'master' into Linux_WLD
lboue Sep 15, 2024
889feec
Merge branch 'master' into Linux_WLD
lboue Sep 25, 2024
1e754d4
Delete examples/water-leak-detector-app/linux/README.md
lboue Sep 25, 2024
6dd7fc6
Merge branch 'master' into Linux_WLD
lboue Sep 26, 2024
7040377
Update targets.py to add WATER_LEAK_DETECTOR
lboue Oct 2, 2024
62d4f67
Update host.py to add WATER_LEAK_DETECTOR
lboue Oct 2, 2024
931905e
Merge branch 'master' into Linux_WLD
lboue Oct 2, 2024
7146e9c
Update water-leak-detector-app.matter
lboue Oct 2, 2024
79b97a9
Update all_targets_linux_x64.txt
lboue Oct 2, 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
Next Next commit
Update host.py to add WATER_LEAK_DETECTOR
  • Loading branch information
lboue authored Oct 2, 2024
commit 62d4f676760bc5bac59bb572affcf600adae6528
6 changes: 6 additions & 0 deletions scripts/build/builders/host.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ class HostApp(Enum):
AIR_QUALITY_SENSOR = auto()
NETWORK_MANAGER = auto()
ENERGY_MANAGEMENT = auto()
WATER_LEAK_DETECTOR = auto()

def ExamplePath(self):
if self == HostApp.ALL_CLUSTERS:
Expand Down Expand Up @@ -154,6 +155,8 @@ def ExamplePath(self):
return 'network-manager-app/linux'
elif self == HostApp.ENERGY_MANAGEMENT:
return 'energy-management-app/linux'
elif self == HostApp.WATER_LEAK_DETECTOR:
return 'water-leak-detector/linux'
else:
raise Exception('Unknown app type: %r' % self)

Expand Down Expand Up @@ -266,6 +269,9 @@ def OutputNames(self):
elif self == HostApp.ENERGY_MANAGEMENT:
yield 'chip-energy-management-app'
yield 'chip-energy-management-app.map'
elif self == HostApp.WATER_LEAK_DETECTOR:
yield 'water-leak-detector-app'
yield 'water-leak-detector-app.map'
else:
raise Exception('Unknown app type: %r' % self)

Expand Down
Loading