The configuration of a FHEM-system (de) is usually saved in a configuration-file, called fhem.cfg[1].
Basics
When starting FHEM, the last saved configuration is loaded. By default this configuration is stored in a file called fhem.cfg. Alternatively it can be stored in a database. Also a different file can be used. This has to be specified when starting FHEM.
Autocreate
In case the autocreate-function is enabled (define autocreate autocreate), particular objects are created automatically. These definitions get stored in the configuration file used at startup.
autocreate is enabled after a default-installation of FHEM.
Editing the Configuration
"Button" to save configuration changesExample of a list of unsaved configuration changes
FHEMs configuration can be edited in several ways. The recommended way is using the command-field and the object-details. Or use the options of Raw definition, that can be accessed direcly by clicking the "+" left of the command field. All of the three offer syntax-highlighting and syntax check (to some extend).
Using the methods internal editor and particulary external editor should be seen as expert-mode and only used in special cases. Many of the (error checking-) automatics can't be used in this two modes.
Especially mixing the editing-methods can result in unexpected or unwanted effects. E.g. no save config before rereading the configuration or restarting FHEM.
To see a list of unsaved changes, click on the red question mark next to the save config-link.
Command-Field
Command-Input-Field
Using the command-input-field, which can be found on top of the page, is a quick and simple way to edit the configuration (e.g. define new or edit existing devices (de), create or edit attributes (de), etc.). The changes take effect right after pushing the Enter-key.
To save your changes, type save into the command-field or use the Save config-link on the left side of the page. Else all changes are lost after a restart of FHEM.
Detailed View of an Object
When clicking on the name of an object, it's details are shown on a new page. Depending on the type of the object, there are serveral ways to manipulate it's properties:
List of Attributes attributes / attribut-values from select lists
some more or other actions depending on the type
Changes to definitions take effect right after pushing the modify-button. When altering attributes or their values don't forget to use the attr-button.
To save your changes, type save into the command-field or use the Save config-link on the left side of the page. Else all changes are lost after a restart of FHEM.
Internal Editor
Calling the internal editorEditor-window (extract) with syntax-highlighting
If it's deemed necessary to edit the config-file manually, it's possible to use the internal editor. Sticking to the exact syntax of commands and definitions is inevitable, partially there are some special actions needed (escaping special characters, doubling semicolons, ...). After saving the changes, they get active immediately.
Using the internal editor to edit the configuration is locked by default. If you think it's absolutely neccesary to unlock this feature, have a look at the options of FHEMWEB in the command reference.
Syntaxhighlighting
Autocomplete in command selection window ("se" has been typed, followed by Ctrl+Space)
FHEM offers syntax highlighting, command selection and command auocompletion features.
This would change behaviour of TAB key to set 2 space characters (default: 4); also 'SHIFT+TAB' will only go back 2 space characters and auto completion (Ctrl+SPACE) will be deactivated (to be exact: show-hint.js and show-hint.css will not be loaded any longer); additionally, the highth of the editor field will be extended automatically to keep the entire content.
Defaults used by FHEMWEB (can be changed by setting the corresponding parameters in codemirrorParam attribute):
Parameter
Default
Wert
Remarks
"matchBrackets"
true
boolean
Load module matchbrackets.js and activates bracket highlighting.
"autoRefresh"
true
boolean
Loads module autorefresh.js; this will especially prevent a "just black" editor field will be shown when the editor is opened a second time.
"search"
true
boolean
Loads modules search.js, searchcursor.js, dialog.js, and stylesheet dialog.css to activate search and replace functionality.
"comment"
true
boolean
Loads module comment.js offering commenting/uncommenting by shortkey Ctrl+Q.
"autocomplete"
true
boolean
Loads module show-hint.js and stylesheet show-hint.css for autocomletion witz Ctrl+SPACE.
"autocompleteAlways"
false
boolean
Extends "autocomplete" for autocompletion without need for additional Ctrl+SPACE.
"autoCloseBrackets"
true
boolean
Loads module closebrackets.js - ()[]{}"" will be added automatically pairwise .
"jumpToLine"
false
boolean
Loads module jump-to-line.js - allowes shortcut ALT+G to jump to a specified line.
"jumpToLine_extraKey"
false
z.B. "ALT-H"
Change default shortcut ALT+G for jumpToLine.
"keyMap"
false
"vim"
Load fhem/www/codemirror/vim.js or a other *.js file in this folder.
"indentUnit"
4
integer
How many space characters a TAB will include.
"type"
"fhem"
string
Standard codemirror-mode, defaults to fhem.js.
"theme"
"blackboard"
string
Standard codemirrer-theme, defaults to blackboard.css.
"indentWithTabs"
true
boolean
When activated, tabs will be used instead of space characters.
"autofocus"
true
boolean
When activated, focus will be set inside the editor area when codemirror is loaded.
"lineNumbers"
true
boolean
When activated, line numbers will be shown inside the editor.
"smartIndent"
false
boolean
Context sensitive indent (true) or "same indent als previous line" (false).
"height"
false
integer / "auto"
Use automatic (default) or user definded highth of for the editor window. (In DEF and also in attribute editing)
If syntax highlighting / autocompletion is activated, this affects
It's also possible - though not recommended - to edit the configuration with an external editor. E.g.
Notepad++ (with the nppFTP-Plugin)
nano in a Telnet session
editor integrated in wsftp
Sticking to the exact syntax of commands and definitions is inevitable, partically there are some special actions need (escaping special characters, doubling semicolons, ...).
Changes to the file will only take effect after rereading the configuration (rereadcfg) or restarting FHEM.
Splitting fhem.cfg into Multiple Files
If needed, fhem.cfg can be splitted into multiple files. All files then have to be included in fhem.cfg with the command include (de). This is considered as "expert mode" and should (if at all) only be used by advanced users.
Configuration in a SQL Database
Since FHEM version 5079 it's possible to store the configuration in a database instead of a text-file. This is done by using configDB (module) and configdb (command)
References
↑The term fhem.cfg is also used, if the configuration is split into multiple files or saved in a database