Fix "OpenHab" typo (#1577)

Signed-off-by: Patrick Fink <mail@pfink.de>
pull/1579/head
Patrick Fink 2021-05-18 22:21:47 +02:00 committed by GitHub
parent 2153b20e26
commit 062a6bfaa5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 10 additions and 10 deletions

View File

@ -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.

View File

@ -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.

View File

@ -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)

View File

@ -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)

View File

@ -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

View File

@ -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.