I found code using pigpio which seems to work fine for a while but then after I return the lcd to full brightness it flickers badly.
The code I use...(based on what I found on the internet)
Code: Select all
os.system("sudo pigpiod")
import pigpio
self.gpio = pigpio.pi()
self.gpio.set_PWM_frequency(19,100)
self.gpio.set_PWM_dutycycle(19,self.bright)Code: Select all
self.gpio.set_PWM_dutycycle(19,self.bright)Anyone else got it working ?