hzeller / rpi-rgb-led-matrix

Controlling up to three chains of 64x64, 32x32, 16x32 or similar RGB LED displays using Raspberry Pi GPIO
GNU General Public License v2.0
3.63k stars 1.15k forks source link

DietPi Buster + Raspberry Pi 4 works well! #991

Open raspberry-pi-maker opened 4 years ago

raspberry-pi-maker commented 4 years ago

When I used Rasbian Buster with Rpi4 issue #483 occcurs. I have to use an old Rasbian Jessie. But the Rpi 4 doesn't support Jessie. As a result, I have to use Rpi 3 instead of 4. Yesterday, I tested DietPi Buster with Rpi 4. The RGB LED matrices display is good. No flickering. I've write the test process in my blog (https://iot-for-maker.blogspot.com/2020/02/led-5-raspberry-pi-4-dietpi-buster.html). I hope this can help you who want to use Rpi 4.

mikecann commented 4 years ago

This is good to know. Im about to embark on a project involving 6 x 64x64 panels using a pi 4 and the Electrodragon HAT.

I calculated here (https://github.com/hzeller/rpi-rgb-led-matrix/issues/989) that I would need a max of 200w. I noticed that you got a 10a supply for yours, was that enough?

raspberry-pi-maker commented 4 years ago

When all the RGB LED pixels are on, max power might be needed. However, this rarely happens. Of course, it's a good idea to have a power supply that can handle the maximum power. In my case, considering the cost, there was no big problem using 5V10A to handle P3 64X32 4EA.

marcmerlin commented 4 years ago

Thanks @raspberry-pi-maker I was about to ask @hzeller if there was any benefit to using an rPi4 over a 3? From what I understand the rPi3 is already able to output faster than the panels are able to absorb the input and that while 256x256 is possible with an electrodragon active-3 board, it's pushing the limits of what can be done with 3 channels/1 Pi (refresh rate and color depth are not great). My assumption so far is that an rPi4 doesn't change this and 256x256 is still more or less the limit. I opened https://github.com/hzeller/rpi-rgb-led-matrix/pull/971 https://github.com/hzeller/rpi-rgb-led-matrix/pull/971/commits/57031074130bfe49dc2ed9d0191febaf0ab364d1 to write this to the best of my understanding.

mikecann commented 4 years ago

@marcmerlin I actually found that the pi4 was cheaper than the pi3 thats why I chose it. Plus the extra power lets me run more complex code or run in a higher level language or something.

hzeller commented 4 years ago

Yes, the faster internal processing makes a Pi4 more desirable than a Pi3 even if the clock to the matrix is at their limit.

raspberry-pi-maker commented 4 years ago

I agree with @hzeller . Even though the rPi3 has enough processing power to GPIO handling, making the contents to display is also important. I like to use OpenCV to create the contents. The greater the processing power, the faster the OpenCV's processing speed. Therefore, rPi4 is more advantageous than rPi3 when working with OpenCV such as video display.