openhab-addons/bundles/org.openhab.binding.orvibo
Holger Friedrich 639a1cb263
Prepare for OH 5.0.0 (#17906)
* Switch to 5.0.0-SNAPSHOT
* Fix spotless after unleash
* resolve itest runbundles

Signed-off-by: Holger Friedrich <mail@holger-friedrich.de>
2024-12-15 20:30:05 +01:00
..
src/main Update license headers to 2024 (#16168) 2024-01-01 18:14:57 +01:00
NOTICE
pom.xml Prepare for OH 5.0.0 (#17906) 2024-12-15 20:30:05 +01:00
README.md Markdown Documentation fixes (#17526) 2024-10-10 22:42:51 +02:00

Orvibo Binding

This binding integrates Orvibo devices that communicate using UDP. Primarily this was designed for S20 Wifi Sockets but other products using the same protocol may be implemented in future.

Supported Things

  • S20 Wifi Sockets

Discovery

This binding can automatically discover devices that have already been added to the Wifi network. Please see the check your instruction manual or the help guide in the app for instructions on how to add your device to your Wifi network.

Binding Configuration

This binding does not require any special configuration.

Thing Configuration

This is optional, it is recommended to let the binding discover and add Orvibo devices. To manually configure an S20 Thing you must specify its deviceId (MAC address). In the thing file, this looks like:

Thing orvibo:s20:mysocket [ deviceId="AABBCCDDEEFF"]

Channels

S20

Channel Description Example
power Current power state of switch orvibo:s20:mysocket:power

orvibo.items Example

Switch MySwitch              "Switch state [%s]"  { channel="orvibo:s20:mysocket:power" }

orbivo.sitemap Example

Using the above things channels and items Sitemap:

sitemap demo label="Main Menu" {
        Frame  {
                Switch item=MySwitch
        }
}