From 74f75c8004e040a3b4301b0fa6043a0272d8050b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABl=20L=27hopital?= Date: Tue, 16 Apr 2019 21:24:07 +0200 Subject: [PATCH] Adding documentation for timestamp-update and timestamp-change profiles. (#941) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Gaƫl L'hopital --- configuration/items.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configuration/items.md b/configuration/items.md index 31125b52b..ef018329e 100644 --- a/configuration/items.md +++ b/configuration/items.md @@ -688,6 +688,9 @@ You can find the documentation of these Profiles within the [Add-On documentatio | `rawbutton-toggle-switch` | Trigger | Color, Dimmer, Switch | This Profile can only be used on Channels of the type `system.rawbutton`. On those channels, it will toggle the Item state when `PRESSED` events arrive. This Profile can e.g. be used to add button channels to a lighting item which will enable you to turn the lighting on and off with your button. | | `rawrocker-to-on-off` | Trigger | Dimmer, Switch | This Profile can only be used on Channels of the type `system.rawrocker`. On those channels, it will convert a press on the first rocker button to an `ON` command while the second one will be converted to an `OFF` command. | | `rawrocker-to-dimmer` | Trigger | Dimmer | Same as `rawrocker-to-on-off`, but additionally it allows to dim by holding the respective button. Technically, this Profile sends an `INCREASE` or `DECREASE` Command every 500 milliseconds while you hold. | +| `timestamp-update` | State | All | This profile will update a DateTime Item to track every update of the state of a given channel, whatever the state is. | +| `timestamp-change` | State | All | This profile will update a DateTime Item to track every change of the state of a given channel. | + Example: You have an Item called `Bedroom_Light` that is connected to a Hue lamp ```java Color Bedroom_Light { channel="hue:0210:1:bulb1:color" }