openhab-docs/configuration/blockly/rules-blockly-standard-ext.md

7.6 KiB

layout title
documentation Rules Blockly - openHAB Extensions to the Standard

openHAB Extensions to the Standard

return to Blockly Reference

Introduction

This section explains only the blocks that have been added to the standard blocks by openHAB

toc

Logic

One of the most commonly used standard blocks are conditions blocks. More about conditions can be viewed at youtube How to use IF and ELSE.

Math

The Math section mainly consists of standard Blockly blocks. Two new math blocks were added for bitwise operations:

Bitwise operators

Function: The block allows to compute the following operations with two quantities:

  • bitwise and &
  • bitwise or |
  • bitwise xor ^
  • bitwise left shift <<
  • bitwise right shift >>
  • bitwise unary right shift >>>

blockly-bitwise-operators

Bitwise invert

Function: The bitwise NOT (~) operator inverts the bits of its operand.

blockly-bitwise-not.png

Rounding

The standard block has been extended to provide a rounding function with the ability to set the number of decimal places:

math-round

Text

The Text section is the general section that allows text or string manipulation

More about that topic can be viewed at youtube Working with Text-Blocks.

CRLF

CRLF stands for carriage-return / line-feed which is a technical term for adding a new line in a string

crlf

Function: return a newline character to be added to a string.

Example:

crlf

Text Replace

text-replace

Function: Allows to replace something that is defined by the pattern in the origin-text with what is provided in replacement. Note that the pattern can be just a text or also regex expression.

Example:

text-replace example

Colors

More about that topic can be viewed at youtube Using Color-Blocks and HSB-Conversion

The Colors section simplifies the selection of Color Values. Technically these color RGB values are provided as a hexadecimal combination of the three values for red, green and blue (hence RGB). Each of the individual colors can range from 0 - 255 or 0-FF (hexadecimal). A color of r=255, g=255, b=255 would therefore result into #ffffff preceded by a # which identifies it as a hexadecimal number.

colors-overview

Note that typically RGB values are not used within openHAB for color states but instead the Color-Type expects a HSB Type. See the special hsb-conversion block below.

Color Picker

color-picker

Function: Lets the user pick from a (limited) set of colors and returns a the hexadecimal number (in the above case the value = #33cc00.

Random Color

get-random-color

Function: Returns a random color as a hexcode

Create RGB color

create-rgb-color

Function: Returns a color by mixing the given values in a range from 0 - 255 for reg, green and blue as a hexcode

Blend two colors

blend-two-colors

Function: Blends two colors chosen via a color picker into one color by the given ratio.

:::tip

this could be used for example with a loop that changes the ratio from 0 to 1 to blend the first color into a second

:::

Create HSB-color from RGB color (openHAB)

get-hsb-of

HSB stands for hue-saturation-brightness which is a different way of describing a color. An RGB color can therefore be converted equally into an HSB-color.

Function: This a special openHAB block that converts a hexadecimal color code from one of the above blocks into a String that is required when sending a color command to any item that accepts a color.

  • use that block and connect one of the above blocks into that one to be able to retrieve the HSB value of that block.

HSB stands for hue-saturation-brightness which is a different way of describing a color. An RGB color can therefore be converted equally into an HSB-color.

Function: This a special openHAB block that converts a hexadecimal color code from one of the above blocks into a String that is required when sending a color command to any item that accepts a color.

  • use that block and connect one of the above blocks into that one to be able to retrieve the HSB value of that block.

Example

get-hsb-of-example

Lists

lists-overview lists-overview-concat

blockly-map-for-each

Dictionary for managing key / value pairs

The dictionary is a holder for key value pairs that can be passed along as one. Add or remove new key value pairs by clicking on the cog icon to open the popup of the dictionary block (finally click on the cog again to close the popup). Then drag the key block on the upper left into the key/value bracket on the right like depicted below:

dictionary

Rename the keys as required and then add any value block type to the related key:

Example:

dictionary-example

get value of key from dictionary

dictionary-getkey

Function: Retrieves the value of the key in the given directory

Example:

dictionary-getkey-example

Loop over a dictionary

This block can be found in the Loops section and is a dedicated block that allows to iterate over the elements of a dictionary. The loop provides the value into the variable that was choosen in the drop down. See the examples below how the loop can be used.

map-for-each

Either the dictionary itself can be provided directly or via a variable.

dictionary-foreach-example

Concatenate lists

lists-overview-concat

Function: adds the second list to the first list and returns a new list

Example:

lists-overview-concat

Loops

Even though there a no specialized openHAB blocks provided, loops are used rather often. Therefore there is a good introduction to loops available which can be viewed at youtube Loops in Blockly

Functions

A more advanced feature for reusable blockly code is functions. More about that topic can be viewed at youtube Functions and Parameters.

Return to Blockly Reference

return to Blockly Reference