* Rename collection folders Signed-off-by: Thomas Dietrich <Thomas.Dietrich@tu-ilmenau.de> * Change all occurences of addons and repos Signed-off-by: Thomas Dietrich <Thomas.Dietrich@tu-ilmenau.de> * Add further corrections Signed-off-by: Thomas Dietrich <Thomas.Dietrich@tu-ilmenau.de> * Remove temporary directories after processing Signed-off-by: Thomas Dietrich <Thomas.Dietrich@tu-ilmenau.de> * Reduce addons menus, show current uncond. Signed-off-by: Thomas Dietrich <Thomas.Dietrich@tu-ilmenau.de> * Fix typo Signed-off-by: Thomas Dietrich <Thomas.Dietrich@tu-ilmenau.de> * Remove redundant addons from permalinks Signed-off-by: Thomas Dietrich <Thomas.Dietrich@tu-ilmenau.de> * Sort UI menu entries correctly Signed-off-by: Thomas Dietrich <Thomas.Dietrich@tu-ilmenau.de> * Split maven command Signed-off-by: Thomas Dietrich <Thomas.Dietrich@tu-ilmenau.de> |
||
---|---|---|
.. | ||
readme.md |
readme.md
id | label | title | type | description | source | since | install |
---|---|---|---|---|---|---|---|
rpircswitch | Raspberry Pi RC Switch | Raspberry Pi RC Switch - Bindings | binding | This binding enables the management of remote controlled (RC) switches via a 433-MHz transmitter connected to a Raspberry Pi. It can be used with a 433-MHz transmitter connected to a Raspberry Pi as described in [this assembly instruction](https://www.raspberrypi.org/forums/viewtopic.php?f=37&t=66946). | https://github.com/openhab/openhab1-addons/blob/master/bundles/binding/org.openhab.binding.rpircswitch/README.md | 1x | manual |
{% include base.html %}
Raspberry Pi RC Switch Binding
This binding enables the management of remote controlled (RC) switches via a 433-MHz transmitter connected to a Raspberry Pi. It can be used with a 433-MHz transmitter connected to a Raspberry Pi as described in this assembly instruction.
Binding Configuration
This binding can be configured in the file services/rpircswitch.cfg
.
Property | Default | Required | Description |
---|---|---|---|
gpioPin | Yes | GPIO port from which the RC transmitter receives its data |
Item Configuration
This binding only supports Switch items, which can be configured with the following syntax:
Switch YourItemName { rpircswitch="<groupAddress>:<deviceAddress>" }
where:
<groupAddress>
is the ID of the switch group<deviceAddress>
is the ID of the switch within the group
Group and device address can usually be configured in the RC switch device by adjusting DIP switches.
Example
items/rpircswitchdemo.items
Switch SleepingRoom { rpircswitch="11111:4" }
Switch LivingRoom { rpircswitch="11111:1" }
sitemaps/rpircswitch.sitemap.fragment
Switch item=SleepingRoom label="Sleeping Room"
Switch item=LivingRoom label="Living Room"