Led Strip #169
-
Hi, David |
Beta Was this translation helpful? Give feedback.
Replies: 6 comments
-
To be honest, controlling LED strips with Java is a new path for me too. I checked the Adafruit implementation with an SPI strip and this should be pretty feasible to achieve in Java... So far, I've been only experimenting with WS2812-strips with a one-wire connection + Python, but I'm definitely going to order a WS2801-strip and see what can be achieved with SPI (if time is available). |
Beta Was this translation helpful? Give feedback.
-
Thanks for the reply, I ll do python connectors then. I found this post here mentioning pi4j : https://forums.raspberrypi.com/viewtopic.php?t=187520 |
Beta Was this translation helpful? Give feedback.
-
FYI a Raspberry Pi is not ideal to control (long) strips anyhow because of timing-critical data. In my book "Getting Started with Java on the Raspberry Pi" I did a similar thing with an Arduino, sources on https://github.com/FDelporte/JavaOnRaspberryPi/tree/master/Chapter_11_Queues/arduino-wifi-mosquitto And a few other examples after a quick search |
Beta Was this translation helpful? Give feedback.
-
And I was actually searching for this project, but only found now: https://www.bhencke.com/pixelblaze
|
Beta Was this translation helpful? Give feedback.
-
Thanks for checking Frank, but I have already this working remotly via lora radio system on arduino |
Beta Was this translation helpful? Give feedback.
-
@duvamduvam took some time, but finally added to featured projects: https://pi4j.com/featured-projects/street-artist-robot/ |
Beta Was this translation helpful? Give feedback.
FYI a Raspberry Pi is not ideal to control (long) strips anyhow because of timing-critical data.
Maybe consider to combine a Java app with an extra microcontroller-kind of device for the LED strip control.
In my book "Getting Started with Java on the Raspberry Pi" I did a similar thing with an Arduino, sources on https://github.com/FDelporte/JavaOnRaspberryPi/tree/master/Chapter_11_Queues/arduino-wifi-mosquitto
And a few other examples after a quick search