This is an old revision of the document!
Installation
Prerequisites
Linux, FreeBSD and OSX
Before you install pilight, make sure you have gcc
installed. On some distributions you can also install all compilation tools at once by installing build-essential
. The installation of these programs differ from distribution to distribution. Please refer to their instructions on how to do this.
Windows
The prerequisites for compiling for Windows are includes in the git package.
Connecting the Hardware
In order to fully use pilight you need to have one of the supported hardware senders and receiver connected. Currently pilight can run in two hardware modes. Please refer to the settings.json description on how to use one of these modes.
Module
In this mode, pilight will use a lirc kernel module to send a receive codes. This hardware mode is advised when you are not using a low-pass filter.
lirc_rpi
kernel module.modprobe lirc_rpi gpio_in_pin=18 gpio_out_pin=17
GPIO
In this mode, pilight will directly use the gpio pins. This hardware mode is advised when you are using a low-pass filter.
Compilation and Installation
Please follow these steps carefully to install pilight:
cd ~ git clone --depth 5 https://github.com/pilight/pilight.git cd pilight make make install ldconfig
pilight is now installed and can be used by running pilight-daemon
. This will run pilight with a default configuration. This allows basic sending en receiving.
Configuring
To change any of the default settings of pilight alterations can be made in the settings.json file. To predefine specific locations and their respective devices a config.json file can be created. Please refer to both wiki pages for further explanations.