This little page explaines how to configure Majordome.
Some examples are provided also in Config
directory at the root of this project.
-h
: onling helps about known options (mostly what is bellow)-f
: specify Majordome's configuration file. If not provided, the default it/usr/local/etc/Majordome.conf
-t
: tests configuration file and exits. Ensures your configuration is syntax correct and understood as you're expecting by Majordome.
-q
: be quiet, remove all messages but script generated ones-v
: enable verbose messages-r
: enable trace messages, even more verbose, noisy-V
: silence topic arrival messages. Avoid verbosity to be polluted but incoming messages tracking which is very noisy.
A configuration file instructs Majordome about its basic configuration and where are located automation objects.
Lines starting by a hash sign #
are considered as comment and, as such, ignored.
Tip
Thanks to -f
, it's possible to specify the configuration file to use, consequently, it's possible to have several instances running with totally separate configuration.
MQTT Broker to connect to. With Paho syntax that is : tcp://*fqdn_hostname*:*port*
.
Example (which is the default value) :
Broker_URL=tcp://localhost:1883
Client ID to uniquely identify to the broker.
Caution
In case you have more than one Majordome instance connected to a single broker, you MUST set a unique ID per instance.
If not set, the Client ID will be Majordome-*Hostname*-*pid*
.
Example :
ClientID=Majordome
Directory where to find custom configuration and automation objects.
Example (which is the default value) :
ApplicationDirectory=/usr/local/etc/Majordome/
Automation configurations are grouped (for a specific Majordome instance) in a directory tree likes specified with the ApplicationDirectory=
parameter. A typical directory tree looks like :
00_Majordome
01_Pool
02_LivingRoom
Directories, also known as containers, are loaded in order (00_* first, 01_* after, etc ...). As soon as declared, Majordome objects can be used in further ones. An error is raised if an object is duplicated.
Tip
Have a look on 00_Majordome
provided in Documentations/SamplesCode/AllComponents/ directory. It contains some code that can be usefull in all project.
LogToFile.lua
MidnightOrAtLaunch.timer
PurgeLog.lua
README.md
It defines daily rotating log in /tmp
with automatic purging. See Séléné's SelLog.
Caution
If Majordome's objects (triggers, timers, ...) are shared, Lua scripts are stateless and Lua side variables, functions, can't be shared among scripts. See bellow about Lua scripting.
Objects configuration is done using plain text files and the suffix determines their kind. Files without known suffix are ignored.
Supported are :
- Timer (
.timer
) : specifies the absolute time or the interval to launch an action - Topic (
.topic
) : specifies MQTT topics. For incoming topic, the payload can be forced to be a numerical value and it can be stored as a SelShared variables with an optional expiration time (time to live, TTL). A quality of service (QoS) can be specified as well - Rendez-vous (
.rendezvous
) : allows triggering an action without having to use an MQTT topic. - Tracker (
.tracker
) : a simple but powerful state box to track some activities. Start an action at after an even, track its advancement, finishing it. - MinMax (
.minmax
) : A simple way to generate statistics on data collection : minimum, maximum, average, ... of data coming from a data source (like topic). - last but not least, Tasks (
.lua
) are Lua script that are triggered by events described above. Processing data, storing them, decision-making, triggering other objects ... they are the brain of the automation.
Following variables are defined in launched scripts :
- MAJORDOME_VERSION
- MAJORDOME_COPYRIGHT
- MAJORDOME_ClientID - MQTT Client identifier, must be unique per broker.
- MAJORDOME_VERBOSE - declared if started with
-v
option, unset otherwise. - if compiled with DEBUG defined and if started with
-d
option, MAJORDOME_DEBUG is declared, otherwise, it is unset.
As well as following objects :
- all Séléné loaded modules (SelLog, SelMQTT, ...)
- MQTTBroker - Broker defined in Majordome's configuration file. This object aims to let Lua scripts to
Publish()
In each subdirectory, Init.lua
(with capital 'I') is executed at startup, during user configuration loading. It's mostly used to do initialization (so its filename 😋).
- SamplesCode - basic examples involving Majordome's components.
- UseCases - advanced examples
Time to time, I'll add additional examples or tutorial. In addition, MaMaison
branch contains the code I'm using to control my house.