For a project I'm working on, I'm looking to control the color of digital RGB leds using a python program. After doing some research I found out that Arduino should work for this. However, the code works as follows:
- The code determines what the most present color is on the monitor
- The color is then averaged out and sent as output in (r,g,b) format
To "scan" the colors of the screen I am using the python PIL library. My question is the following:
Will the code still be able to "read" colors of the monitors if it is not running on the PC? and if not, can I somehow control the RGB leds using just my PC?