From ad3f3bf2455e9c14e606687295cff8c23e8f995e Mon Sep 17 00:00:00 2001 From: openHAB Build Server Date: Mon, 25 Apr 2022 04:48:45 +0000 Subject: [PATCH] Updated external content (Jenkins build 909) --- _addons_bindings/prowl/readme.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/_addons_bindings/prowl/readme.md b/_addons_bindings/prowl/readme.md index e767a62c6..fb1319ca5 100644 --- a/_addons_bindings/prowl/readme.md +++ b/_addons_bindings/prowl/readme.md @@ -49,9 +49,11 @@ _*.rules_ Once you have created the broker thing with a valid API key, you can use the Prowl service in your rules. First you need to create an instance of the broker just before any call or on the top rules level. (replace the _mybroker_ with the right name of your instance). -Then you can call method _pushNotification_, which requires two parameters - _event_ and _description_. +Then you can call method _pushNotification_, which requires two parameters - _event_ and _description_. +There is also an optional third parameter _priority_ which represents the message priority (very low) -2,-1,0,1,2 (emergency). The default priority is 0. ``` val prowl = getActions("prowl","prowl:broker:mybroker") prowl.pushNotification("Event", "This is the description of the event") +prowl.pushNotification("Emergency Event", "This is the description of the event", 2) ```