BitWizard module and RPI3b+

All the topics related to QLC+ on the Raspberry Pi
Post Reply
Nibed
Posts: 3
Joined: Mon Apr 03, 2017 7:55 pm
Real Name:

I have mention system and am trying to make it work. The procedure that made it quasi working was:

#1 Disable Blutooth (add row in /boot/config.txt: dtoverlay=pi3-disable-bt)
#2 Enable UART (add row in /boot/config.txt: enable_uart=1)
#3 setup GPIO 18 as output and set it high (i made python script and have to start it after every boot:

import RPi.GPIO as GPIO
GPIO.setmode(GPIO.BCM)
GPIO.setup(18,GPIO.OUT)
GPIO.output(18,GPIO.HIGH)
)

the problem is that i want to make this automatic at startup. Does anyone have idea where is qlc configured to autostart so i can start my script before it_

Thanks.

P.S. For #3 I had to reinstall RPIWiring

sudo apt-get purge wiringpi
sudo apt-get install wiringpi
User avatar
mcallegari
Posts: 4482
Joined: Sun Apr 12, 2015 9:09 am
Location: Italy
Real Name: Massimo Callegari
Contact:

QLC+ starts via a SYSV script:

Code: Select all

/etc/init.d/qlcplus
Post Reply