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

[tellstick] Add support for suggestion finder #16228

Merged
merged 3 commits into from
Jan 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
10 changes: 3 additions & 7 deletions bundles/org.openhab.binding.tellstick/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,9 @@ All of these 433 MHz devices is one-way, so some versions of the Tellstick monit

The latest versions have also implemented Z-Wave as transmission protocol which open up for more robust transmission due two-ways communication.

<p align="center">
<img src="doc/tellstick_duo.jpg" alt="Tellstick Duo with device" width="300px"/>
</p>
![](doc/tellstick_duo.jpg)

<p align="center">
<img src="doc/znet.jpeg" alt="Tellstick Znet lite v2" width="300px"/>
</p>
![](doc/znet.jpeg)

## Supported Things

Expand Down Expand Up @@ -97,7 +93,7 @@ Optional:
#### Telldus Live Bridge

To configure Telldus Live you have request OAuth tokens from Telldus.
Goto this page <https://api.telldus.com/keys/index> and request your keys and update the config.
Goto this page <https://pa-api.telldus.com/keys/index> and request your keys and update the config.

```java
Bridge tellstick:telldus-live:2 "Tellstick ZWave" [publicKey="XXX", privateKey="YYYY", token= "ZZZZ", tokenSecret="UUUU"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,16 @@
<description>This is the binding for Telldus Tellstick Basic, Duo, .Net and Z-Net Lite.</description>
<connection>hybrid</connection>

<discovery-methods>
<discovery-method>
<service-type>usb</service-type>
<match-properties>
<match-property>
<name>chipId</name>
<regex>(?i)1781:0C31</regex>
</match-property>
</match-properties>
</discovery-method>
</discovery-methods>

</addon:addon>