diff --git a/configuration/rules-dsl.md b/configuration/rules-dsl.md index f83c533d0..f11af60a6 100644 --- a/configuration/rules-dsl.md +++ b/configuration/rules-dsl.md @@ -395,7 +395,7 @@ Often it is desired to calculate other values from Item states or to compare Ite In openHAB, every item carries a state. The state of an Item is an Object itself and can be accessed with `MyItem.state`. -A complete and up-to-date list of item types are currently allowed in OpenHAB and the command types each item can accept is given in the [openHab documentation for items]({{base}}/concepts/items.html). +A complete and up-to-date list of item types are currently allowed in openHAB and the command types each item can accept is given in the [openHab documentation for items]({{base}}/concepts/items.html). To use the state of an Item in rules it is often necessary to know what type of state the Item is carrying and how to convert it into types that can be used in such operations. Conversely, to use the result of a calculation to modify the state of an item may require its transformation into a suitable type. diff --git a/developers/ide/eclipse.md b/developers/ide/eclipse.md index 2d5bfb60c..4995c5fdf 100644 --- a/developers/ide/eclipse.md +++ b/developers/ide/eclipse.md @@ -10,7 +10,7 @@ To make development easier an out-of-the-box setup is available that completely This guide describes the steps to setup Eclipse and how to run and debug an add-on in Eclipse. ::: tip Existing Eclipse Installations -If you already have Eclipse installed it is recommended to perform a separate Eclipse install for OpenHAB to avoid overriding your existing Eclipse configuration. +If you already have Eclipse installed it is recommended to perform a separate Eclipse install for openHAB to avoid overriding your existing Eclipse configuration. ::: ## Eclipse IDE Setup @@ -93,7 +93,7 @@ This mechanism replaces the add-on installation process via the UI that you woul ### Running Add-ons Under `Infrastructure` you will find the project `org.openhab.demo.app`. -This project contains the full configuration to run OpenHAB. +This project contains the full configuration to run openHAB. The following files are of interest for the execution environment: ```text @@ -102,7 +102,7 @@ The following files are of interest for the execution environment: |------- conf Here you configure the manual text files |------- userdata Here is the openHAB user data |------- logback.xml XML file for logging options -|--- app.bndrun The file to start OpenHAB +|--- app.bndrun The file to start openHAB |--- pom.xml The pom file with all dependencies for the demo project ``` @@ -198,7 +198,7 @@ If you imported your add-on as a project then the jar file is no longer retrieve If you want to develop a new binding read about the [Skeleton Script](../#develop-a-new-binding) to generate the base for your binding and create all required files. Then follow the above steps to build your sources and to configure the demo app to run your binding. -## Updating OpenHAB +## Updating openHAB -You can update the OpenHAB version you are running in the IDE at any time simply by updating your git repos under your install folder. +You can update the openHAB version you are running in the IDE at any time simply by updating your git repos under your install folder. For example to update to the latest version run `git checkout` in each repo folder under your `git` folder in the installation folder. diff --git a/developers/ide/intellij.md b/developers/ide/intellij.md index 0e00b9135..3fc04771f 100644 --- a/developers/ide/intellij.md +++ b/developers/ide/intellij.md @@ -9,7 +9,7 @@ title: IntelliJ - git, Maven, IntelliJ and Java 11 are installed -## Install OpenHAB distribution +## Install openHAB distribution 1. Install the official [openHAB distribution](https://www.openhab.org/download/) 1. Start the distribution **in debug mode** (use `./start_debug.sh` instead of `./start.sh` in step 4) diff --git a/installation/armbian.md b/installation/armbian.md index 1f44573a5..0c6560269 100644 --- a/installation/armbian.md +++ b/installation/armbian.md @@ -19,7 +19,7 @@ Armbian is a base operating system platform for single board computers. ## Recommended hardware -OpenHab will run on any Armbian [supported hardware](https://www.armbian.com/download/?device_support=Supported) but it is recommended to choose boards that have at least: +openHAB will run on any Armbian [supported hardware](https://www.armbian.com/download/?device_support=Supported) but it is recommended to choose boards that have at least: - 512 Kb of memory (on minimal or server image) - eMMC or a [quality SD card](https://docs.armbian.com/User-Guide_Getting-Started/#how-to-prepare-a-sd-card) diff --git a/installation/security.md b/installation/security.md index 6ad4ec69b..6d2e888b3 100644 --- a/installation/security.md +++ b/installation/security.md @@ -577,7 +577,7 @@ sudo nano /usr/local/etc/nginx/sites-enabled/openHAB-auth ``` ```nginx -# OpenHab NGINX config +# openHAB NGINX config server { listen 2020; #This is simply an unused port, it can be any number diff --git a/introduction.md b/introduction.md index cb7e85263..e0b5dd665 100644 --- a/introduction.md +++ b/introduction.md @@ -114,7 +114,7 @@ In most cases, the description also contains a fully worked out example that inc To all newcomers: please read the section [New User Tutorial]({{base}}/tutorial). That section provides you with step-by-step instructions for your first easy setup. -OpenHAB runs on most popular platforms such as Linux, Windows and MacOS and on almost any hardware ranging from Raspberry Pis to desktop computers and server PCs. +openHAB runs on most popular platforms such as Linux, Windows and MacOS and on almost any hardware ranging from Raspberry Pis to desktop computers and server PCs. You can find specific installation instructions for these and other platforms in the [Installation Overview]({{base}}/installation/index.html) article. If you have a strong preference towards a particular platform, then that platform is probably your best choice.