Control Lutron GRAFIK Eye QS with DMX
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
GRMrGecko f666e423c2 first commit 5 years ago
License.txt first commit 5 years ago
README.md first commit 5 years ago
lutron-dmx-control.py first commit 5 years ago
lutron-dmx-control@.service first commit 5 years ago
olad@.service first commit 5 years ago

README.md

This project is designed to control the GRAFIK Eye QS Control panel via the QSE-CI-NWK-E with the serial interface. The project is designed to use the OLA (https://www.openlighting.org/) project to use either a DMX device to a network DMX protocol to control the 6 available zones.

I designed this software for use on a Raspberry Pi using the 2019-07-10-raspbian-buster-lite release and OLA at dc40569a7e compiled and installed using instructions at https://www.openlighting.org/ola/linuxinstall/

Configuration

Once OLA is installed, run it using olad -l 3 and then edit the configuration files in .ola/ to disable the modules which are not used as some of them will take the serial device. Once configured, run olad -l 3 again and visit the raspberry pi's IP address at port 9090 in your browser to configure the DMX universe you are going to use. Once configured, you can then test this software by changing the configuration portion of the code.

Trick to disable all modules except the one you are using.

sed -i '/enabled\s=/c\enabled = false' ~/.ola/*.conf
sed -i '/enabled\s=/c\enabled = true' ~/.ola/ola-e131.conf

Installation

Install Python/needed modules.

apt install python3-pip python3-serial
pip3 install ola

Copy lutron-dmx-control@.service and olad@.service to /etc/systemd/system/ and run the following to enable/start.

systemctl daemon-reload
systemctl enable olad@pi
systemctl start olad@pi
systemctl enable lutron-dmx-control@pi
systemctl start lutron-dmx-control@pi

Recommend

Enable watchdog on the Raspberry Pi to auto reboot upon system crashes.

Edit /boot/config.txt and add under the [all] section.

watchdog=on

Edit /etc/systemd/system.conf and uncomment RuntimeWatchdogSec and set it as follows.

RuntimeWatchdogSec=10s

After configuring, reboot.