From d36b2a8d825da2410e6c4a7bb293b86986a01c7d Mon Sep 17 00:00:00 2001 From: jimtng <2554958+jimtng@users.noreply.github.com> Date: Thu, 9 Jan 2025 05:15:25 +1000 Subject: [PATCH] [basicprofiles] Add a table-of-contents at top of README.md (#18058) Signed-off-by: Jimmy Tanagra --- .../org.openhab.transform.basicprofiles/README.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/bundles/org.openhab.transform.basicprofiles/README.md b/bundles/org.openhab.transform.basicprofiles/README.md index 14424907325..ac6db7b2787 100644 --- a/bundles/org.openhab.transform.basicprofiles/README.md +++ b/bundles/org.openhab.transform.basicprofiles/README.md @@ -1,6 +1,18 @@ # Basic Profiles -This bundle provides a list of useful Profiles. +This bundle provides a list of useful Profiles: + +| Profile | Description | +| --------------------------------------------------------------- | -------------------------------------------------------------------------------------------- | +| [Generic Command Profile](#generic-command-profile) | Sends a Command towards the Item when an event is triggered | +| [Generic Toggle Switch Profile](#generic-toggle-switch-profile) | Toggles a Switch Item when an event is triggered | +| [Debounce (Counting) Profile](#debounce-counting-profile) | Counts and skip a number of State changes | +| [Debounce (Time) Profile](#debounce-time-profile) | Reduces the frequency of commands/state updates | +| [Invert / Negate Profile](#invert--negate-profile) | Inverts or negate a Command / State | +| [Round Profile](#round-profile) | Reduces the number of decimal places from input data | +| [Threshold Profile](#threshold-profile) | Translates numeric input data to `ON` or `OFF` based on a threshold value | +| [Time Range Command Profile](#time-range-command-profile) | An enhanced implementation of a follow profile which converts `OnOffType` to a `PercentType` | +| [State Filter Profile](#state-filter-profile) | Filters input data using arithmetic comparison conditions | ## Generic Command Profile