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

Addon suggestion finder xml #1908

Merged
merged 9 commits into from
Dec 28, 2023
27 changes: 27 additions & 0 deletions src/main/resources/OH-INF/addon/addon.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,31 @@ The binding uses a standard Z-Wave serial stick to communicate with the Z-Wave d
]]>
</description>

<discovery-methods>
<discovery-method>
<service-type>usb</service-type>
<match-properties>
<match-property>
<name>product</name>
<regex>(?i).*z-wave|hubz|husbzb|z-stick.*</regex>
</match-property>
</match-properties>
</discovery-method>
<discovery-method>
<service-type>usb</service-type>
<match-properties>
<match-property>
<name>chipId</name>
<!--
The following chipId's are supported:
0658:0200 Aeotec Z-Stick Gen5 (ZW090) - UZB
10C4:8A2A Silicon Labs HubZ Smart Home Controller
1A86:55D4 Zooz 800 Z-Wave Stick
-->
<regex>0658:0200|10C4:8A2A|1A86:55D4</regex>
</match-property>
</match-properties>
</discovery-method>
</discovery-methods>

</addon:addon>