]> git.basschouten.com Git - openhab-addons.git/commitdiff
[openhabcloud] Further README improvements (#16942)
authorFlorian Hotze <florianh_dev@icloud.com>
Fri, 28 Jun 2024 20:13:24 +0000 (22:13 +0200)
committerGitHub <noreply@github.com>
Fri, 28 Jun 2024 20:13:24 +0000 (22:13 +0200)
Also-by: Jimmy Tanagra <jcode@tanagra.id.au>
Signed-off-by: Florian Hotze <florianh_dev@icloud.com>
bundles/org.openhab.io.openhabcloud/README.md
bundles/org.openhab.io.openhabcloud/doc/configuration.png

index da59bf1d95f6212d35d42d98cbd933b978e58b02..655691fa89dc5fb133a1d6ab06f4623eaad39531 100644 (file)
@@ -13,29 +13,31 @@ The openHAB Cloud service (and thus the connector to it) is useful for different
 
 ## Installation via UI
 
-* Open the openHAB web portal and login as an administrator.
-* Click on Add-on Store, followed by Other
-* Using the Install button you can install the openHAB Cloud Connector
-* Register your session (https://myopenhab.org/) using UUID and Secret identity
+* Open the openHAB web UI and login as an administrator.
+* Click on Add-on Store, followed by System Integrations.
+* Use the Install button to install the openHAB Cloud Connector.
+* Register your session (https://myopenhab.org/) using UUID and Secret.
 
 ## UUID and Secret
 
-To authenticate with the openHAB Cloud service the add-on generates two values when the add-on is installed.
+To authenticate with the openHAB Cloud service, the add-on generates two values when the add-on is installed.
 These values need to be entered in your account settings of the openHAB Cloud service.
+
 The first one is a unique identifier, which allows to identify your runtime.
 One can think of it as something similar like a username for the cloud authentication.
 The second one is a random secret key which serves as a password.
 Both values are written to the local file system.
+
 If you loose these files for some reason, openHAB will automatically generate new ones.
 You will then have to reconfigure UUID and secret in the openHAB Cloud service under the _My account_ section.
 You will need these values to register on the website before connection is accepted.
 
 Location of UUID and Secret:
 
-| File   | Regular Installation         | APT Installation                      |
-|--------|------------------------------|---------------------------------------|
-| UUID   | userdata/uuid                | /var/lib/openhab/uuid                 |
-| Secret | userdata/openhabcloud/secret | /var/lib/openhab/openhabcloud/secret  |
+| File   | Regular Installation                  | APT & RPM Installation               |
+|--------|---------------------------------------|--------------------------------------|
+| UUID   | $OPENHAB_USERDATA/uuid                | /var/lib/openhab/uuid                |
+| Secret | $OPENHAB_USERDATA/openhabcloud/secret | /var/lib/openhab/openhabcloud/secret |
 
 ## Configuration
 
@@ -43,7 +45,7 @@ After installing this add-on, you will find configuration options in the openHAB
 
 ![Configuration](doc/configuration.png)
 
-By default both remote access and push notifications are enabled.  
+By default, both remote access and push notifications are enabled.  
 
 ### Advanced Configuration
 
@@ -105,7 +107,7 @@ The parameters for these actions have the following meaning:
 
 - `emailAddress`: String containing the email address the target user is registered with in the cloud instance.
 - `message`: String containing the notification message text.
-- `icon`: String containing the icon name (as described in [Items]({{base}}/configuration/items.html#icons)).
+- `icon`: String containing the icon name (as described in [Items: Icons]({{base}}/configuration/items.html#icons)).
 - `severity`: String containing a description of the severity of the incident.
 
 `null` may be used to skip the `icon` or `severity` parameter.
@@ -133,15 +135,15 @@ The additional parameter for these variants have the following meaning:
 - `title`: The title of the notification. Defaults to "openHAB" inside the Android and iOS apps.
 - `onClickAction`: The action to be performed when the user clicks on the notification. Specified using the [action syntax](#action-syntax).
 - `mediaAttachmentUrl`: The URL of the media attachment to be displayed with the notification. This URL must be reachable by the push notification client.
-- `actionButton1`: The action to be performed when the user clicks on the first action button. Specified as `Titel=$action`, where `$action` follow the [action syntax](#action-syntax).
-- `actionButton2`: The action to be performed when the user clicks on the second action button. Specified as `Titel=$action`, where `$action` follow the [action syntax](#action-syntax).
-- `actionButton3`: The action to be performed when the user clicks on the third action button. Specified as `Titel=$action`, where `$action` follow the [action syntax](#action-syntax).
+- `actionButton1`: The action to be performed when the user clicks on the first action button. Specified as `Title=$action`, where `$action` follows the [action syntax](#action-syntax).
+- `actionButton2`: The action to be performed when the user clicks on the second action button. Specified as `Title=$action`, where `$action` follows the [action syntax](#action-syntax).
+- `actionButton3`: The action to be performed when the user clicks on the third action button. Specified as `Title=$action`, where `$action` follows the [action syntax](#action-syntax).
 
 These parameters may be skipped by setting them to `null`.
 
 #### Action Syntax
 
-The action syntax is a string containing the action type and the action payload seperated by a colon.
+The action syntax is a string containing the action type and the action payload separated by a colon.
 
 There are two types of actions available:
 
@@ -167,7 +169,7 @@ Notify the openHAB Cloud user with email address _me@email.com_ that the front d
 
 ::: tab DSL
 
-```java 
+```java
 rule "Front Door Notification"
 when
   Item Apartment_FrontDoor changed to OPEN
@@ -181,12 +183,29 @@ end
 
 ```javascript
 rules.when().item('Apartment_FrontDoor').changed().to('OPEN').then(() => {
-  actions.notificationBuilder('Front door was opened!').addUserId('me@email.com').send();
+  actions.notificationBuilder('Front door was opened!')
+    .addUserId('me@email.com')
+    .send();
 }).build('Front Door Notification');
 ```
 
 :::
 
+::: tab JRuby
+
+```ruby
+rule "Front Door Notification" do
+  changed Apartment_FrontDoor, to: OPEN
+  run do
+    notify("Front door was opened!", email: "me@email.com")
+  end
+end
+```
+
+See [notify](https://openhab.github.io/openhab-jruby/main/OpenHAB/Core/Actions.html#notify-class_method)
+
+:::
+
 ::::
 
 Notify all openHAB Cloud users that the window was opened:
@@ -210,15 +229,33 @@ end
 
 ```javascript
 rules.when().item('Apartment_Window').changed().to('OPEN').then(() => {
-  actions.notificationBuilder('Apartment window was opened!').withIcon('window').withSeverity('HIGH').send();
+  actions.notificationBuilder('Apartment window was opened!')
+    .withIcon('window')
+    .withSeverity('HIGH')
+    .send();
 }).build('Open Window Notification');
 ```
 
 :::
 
+::: tab JRuby
+
+Broadcast notification is performed by calling [notify](https://openhab.github.io/openhab-jruby/main/OpenHAB/Core/Actions.html#notify-class_method) without providing an email address.
+
+```ruby
+rule "Open Window Notification" do
+  changed Apartment_Window, to: OPEN
+  run do
+    notify("Apartment window was opened!", icon: "window", severity: "HIGH")
+  end
+end
+```
+
+:::
+
 ::::
 
-Notify all openHAB Cloud users that motion was detected, attach a camera snapshot and add action button to turn on the light:
+Notify all openHAB Cloud users that motion was detected, attach a camera snapshot and add an action button to turn on the light:
 
 :::: tabs
 
@@ -229,7 +266,9 @@ rule "Motion Detected Notification"
 when
   Item Apartment_MotionSensor changed to ON
 then
-  sendBroadcastNotification("Motion detected in the apartment!", "motion", "MEDIUM", "Motion Detected", null, "https://apartment.my/camera-snapshot.jpg", "command:Apartment_Light:ON", null, null)
+  sendBroadcastNotification("Motion detected in the apartment!", "motion", "MEDIUM",
+                                    "Motion Detected", null, "https://apartment.my/camera-snapshot.jpg",
+                                    "Turn on the light=command:Apartment_Light:ON", null, null)
 end
 ```
 
@@ -251,4 +290,22 @@ rules.when().item('Apartment_MotionSensor').changed().to('ON').then(() => {
 
 :::
 
+::: tab JRuby
+
+```ruby
+rule "Motion Detected Notification" do
+  changed Apartment_MotionSensor, to: ON
+  run do
+    notify "Motion detected in the apartment!",
+           icon: "motion",
+           severity: "MEDIUM",
+           title: "Motion Detected",
+           attachment: "https://apartment.my/camera-snapshot.jpg",
+           buttons: { "Turn on the light" => "command:Apartment_Light:ON" }
+  end
+end
+```
+
+:::
+
 ::::
index ac2bde3794f78edc1ccded8df79e83959e870300..8eb138755eaf774aa9b7cff2906cafbb94407e3c 100644 (file)
Binary files a/bundles/org.openhab.io.openhabcloud/doc/configuration.png and b/bundles/org.openhab.io.openhabcloud/doc/configuration.png differ