Skip to content

Commit

Permalink
Improvements to the beginner tutorial (openhab#1356)
Browse files Browse the repository at this point in the history
* Improvements to the beginner tutorial.

Signed-off-by: Jerome Luckenbach <[email protected]>

* Move tutorial sidebar (nearly) to the top.

Signed-off-by: Jerome Luckenbach <[email protected]>
  • Loading branch information
Confectrician authored Dec 21, 2020
1 parent 1d6fbb9 commit a784207
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 27 deletions.
41 changes: 20 additions & 21 deletions .vuepress/docs-sidebar.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,26 @@ module.exports = [
''
]
},
{
title: 'Beginner Tutorial',
collapsable: false,
children: [
['tutorial/', 'Tutorial Overview'],
'tutorial/first_steps',
'tutorial/things_simple',
'tutorial/things_intermediate',
'tutorial/things_advanced',
'tutorial/model',
'tutorial/persistence',
/*'tutorial/pages_intro',
'tutorial/pages_widgets',
'tutorial/pages_types',
'tutorial/rules_simple',
'tutorial/rules_intermediate',
'tutorial/cloud',
'tutorial/example'*/
]
},
{
title: 'Concepts',
collapsable: false,
Expand Down Expand Up @@ -35,26 +55,6 @@ module.exports = [
['installation/security', 'Security']
]
},
{
title: 'Beginner Tutorial',
collapsable: false,
children: [
['tutorial/', 'Tutorial Overview'],
'tutorial/first_steps',
'tutorial/things_simple',
'tutorial/things_intermediate',
'tutorial/things_advanced',
'tutorial/model',
'tutorial/persistence',
/*'tutorial/pages_intro',
'tutorial/pages_widgets',
'tutorial/pages_types',
'tutorial/rules_simple',
'tutorial/rules_intermediate',
'tutorial/cloud',
'tutorial/example'*/
]
},
{
title: 'Configuration Guide',
collapsable: false,
Expand Down Expand Up @@ -83,7 +83,6 @@ module.exports = [
['configuration/ui/habot/', 'HABot'],
'configuration/habpanel',
['configuration/ui/basic/', 'Basic UI'],
// 'configuration/rules-ng',
['apps/android', 'Android App'],
'apps/ios',
'apps/windows',
Expand Down
8 changes: 3 additions & 5 deletions tutorials/getting_started/first_steps.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,18 +64,16 @@ Note that by default, using openHAB doesn't require you to sign in.
Only administrative operations require a user with an administrator role to be logged in.

## Initial Settings
Click on Settings.

Most of the needed settings have already been accomplished, when you have followed the wizard.
Fro further configuration (e.g. the measurement system) click on Settings.

![](images/initial_settings.png)

Click on Regional Settings under System Services.

![](images/regional_settings.png)

Configure the local language, region and time zone.
You can also specify the exact location (latitude, longitude, altitude) of your home, which some add-ons can use to preset their configuration.
For instance, the Astro binding will use the location to determine the time of astrological events like sunrise and sunset in your area.

If you're not using the metric system, click "Show advanced" and change the measurement system.

![](images/units_settings.png)
Expand Down
Binary file modified tutorials/getting_started/images/wizard_addons.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tutorials/getting_started/images/wizard_geo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tutorials/getting_started/images/wizard_location.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified tutorials/getting_started/images/wizard_welcome.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion tutorials/getting_started/things_simple.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ title: Adding Things - Simple

# Adding Things - Simple

As covered in the [concepts section]({{base}}/../../../concepts/index.html) of the openHAB Docs, a binding is an add-on to openHAB that understands how to communicate with a specific home automation technology or API.
As covered in the [concepts section]({{base}}/docs/concepts/index.html) of the openHAB Docs, a binding is an add-on to openHAB that understands how to communicate with a specific home automation technology or API.
A Thing represents a single device in openHAB.
Each sensor (information provided by the device) or actuator (control on the device that causes it to do something) is represented by a Channel on the Thing.
Things are the connection between openHAB and your external device or API using the binding.
Expand Down

0 comments on commit a784207

Please sign in to comment.