-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
LED display flickering #495
Comments
How do you do the scrolling/counter thing ? Make sure to not accidentally blank the other half of the screen. If there is a lot of processing going on that requires memory access, you can saturate the memory bus thus reducing the throughput the matrix update needs. So if you do something CPU and memory intensive, you will cause the matrix to flicker. So try to offload that (e.g. by pre-calculating things; the Finally, make sure to run a version of this library that is fresher than a week, because about a weekend ago I tweaked some defaults that might reduce flicker. |
Also make sure to do the |
Thank you for your reply.I tried using the latest version of the library and also setting isolcpus to 3.There is a minor improvement with this but the LED still flickers.
Is something wrong with my code? |
Make sure you don't have anything else running on the Pi (a shell running top, some cron-job doing stuff regularly etc.), this will mess up timings inside the Pi. If there are other things running on the Pi, slight brightness variations are to be expected. Also, the panel you're using looks more like a HUB12; did you verify the logical level of the output-enable ? Often they need to be reversed. |
Check out the new compile-time option in |
Hi All,
I am using Python 2.7 on my Raspberry Pi 3 .I was successfully able to display a count up timer on the left of the LED display and a scrolling text on the right.I am able to see flickers.I have switched off on-board sound (dtparam=audio=off in /boot/config.txt),although there is minor improvement the led still flickers after every 2 secs.I am also using python threads to carry out some tasks.Is that causing the flickering?
Is there any setting or option that I can enable so that I can eliminate the flickering of LED?
Thanks,
Debasish
The text was updated successfully, but these errors were encountered: