Raspberry Pi 5 and Electromage Output Expander #401
Closed
reedsearle
started this conversation in
General
Replies: 2 comments
-
|
thanks very much for the information. I created PullRequest with the updates. Tom |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
Thanks @reedsearle and @taartspi for this info and the update of the website. I also added this info now in the jbang example code as a comment. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have recently been working with a Raspberry Pi 5 and LED strips to show Java student a visual demonstration of sorting methods. I eventually stumbled on this site and bought the Output Extender from Electromage. I was having trouble making the combination work until I noticed the following line in PixelblazeOutputExtender.java:
helper = new PixelBlazeOutputExpanderHelper("/dev/ttyS0");The Pi 5 does not have a /dev/ttyS0 as the UART conflicts from previous version have been resolved. I modified the code to be:
helper = new PixelBlazeOutputExpanderHelper("/dev/ttyAMA0");Now, the neopixels work perfectly.
Could a note be added to the Pixelblaze page to reflect this?
Beta Was this translation helpful? Give feedback.
All reactions