[Documentation] Markdown improvements f to m (#13866)
Signed-off-by: Jerome Luckenbach <github@luckenba.ch>
This commit is contained in:
committed by
GitHub
parent
3c236b3103
commit
0e68936663
@@ -4,7 +4,6 @@ This binding integrates infrared transceivers through [LIRC](https://www.lirc.or
|
||||
|
||||
A list of remote configuration files for LIRC is available [here](http://lirc-remotes.sourceforge.net/remotes-table.html).
|
||||
|
||||
|
||||
## Supported Things
|
||||
|
||||
This binding supports LIRC and WinLIRC as bridges for accessing the configured remotes.
|
||||
@@ -29,7 +28,6 @@ WantedBy=multi-user.target
|
||||
By default, LIRC will listen on IP address 0.0.0.0 (any available IP address) and port 8765. If you would
|
||||
rather run LIRC on a specific port or IP address, you can use `--listen=192.168.1.100:9001` instead.
|
||||
|
||||
|
||||
## Discovery
|
||||
|
||||
Discovery of the LIRC bridge is not supported. However, remotes will be automatically discovered once
|
||||
@@ -39,7 +37,7 @@ a bridge is configured.
|
||||
|
||||
### Things
|
||||
|
||||
```xtend
|
||||
```java
|
||||
Bridge lirc:bridge:local [ host="192.168.1.120", portNumber="9001" ] {
|
||||
Thing remote Onkyo_RC_799M [ remote="Onkyo_RC-799M" ]
|
||||
Thing remote Samsung [ remote="Samsung" ]
|
||||
@@ -48,23 +46,23 @@ Bridge lirc:bridge:local [ host="192.168.1.120", portNumber="9001" ] {
|
||||
|
||||
Bridge:
|
||||
|
||||
* **host**: IP address or hostname of the LIRC server. Defaults to localhost
|
||||
* **port**: The port number the LIRC server is listening on. Defaults to 8765
|
||||
- **host**: IP address or hostname of the LIRC server. Defaults to localhost
|
||||
- **port**: The port number the LIRC server is listening on. Defaults to 8765
|
||||
|
||||
Remote:
|
||||
|
||||
* **remote**: The name of the remote as known by LIRC
|
||||
- **remote**: The name of the remote as known by LIRC
|
||||
|
||||
### Items
|
||||
|
||||
```xtend
|
||||
```java
|
||||
String Remote_AVReceiver { channel="lirc:remote:local:Onkyo_RC_799M:transmit" }
|
||||
String Remote_TV { channel="lirc:remote:local:Samsung:transmit" }
|
||||
```
|
||||
|
||||
### Rules
|
||||
|
||||
```xtend
|
||||
```java
|
||||
rule "LIRC Test"
|
||||
when
|
||||
Channel 'lirc:remote:local:Samsung:event' triggered KEY_DVD
|
||||
@@ -76,7 +74,6 @@ then
|
||||
end
|
||||
```
|
||||
|
||||
|
||||
## Channels
|
||||
|
||||
This binding currently supports following channels:
|
||||
|
||||
Reference in New Issue
Block a user