Raspberry Pi Alternatives #70
Smiling-Wanderer
started this conversation in
Ideas
Replies: 2 comments 2 replies
|
This is fantastic @Smiling-Wanderer ! Really neat write up of the whole process. Any photos of what it looks like with the adapters etc. connected? I noticed the Renegade doesn't have the CSI camera interface - is the adapter much of a hassle to work with? For the green-on-green I also was having a few issues with |
1 reply
|
is there a step by step for the Jetson Nano? |
1 reply
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.
Uh oh!
There was an error while loading. Please reload this page.
Summary
Oh the supply chain woes! With the global lack of Raspberry Pi's, I wanted to explore some alternatives to the Pi.
Over the past couple of weeks, I've tested the LibreComputer Le Potato (AML-S905X-CC) as a possible alternative to the Pi.
The Potato was able to run the OWL software after some minor changes described in the Software Setup details.
The Potato is comparable from a budget (35 USD) and performance perspective, but does not have onboard wifi, nor a CSI camera interface.
Thanks to @geezacoleman, who also figured out that the Potato does not support USB type 3.0, so green-on-green detection speed optimization through the Google Coral is a not possible.
The Raspberry Pi Camera can be adapted to a UVC camera using an Arducam adapter board (IMX477) (40 USD) and then connected via USB to the Potato.
Though the Potato does seem like a feasible alternative, it may be wiser to move to a more powerful LibreComputer that gives you a little more bang for your buck. The Renegade (ROC-RK3328-CC) could be another feasible alternative, with a cap of 4GB DDR4 RAM for only 40 USD. The Renegade also has the USB 3.0 that would allow for green-on-green.
There are also other SBC alternatives that are more expensive but would offer significant performance gains. NVIDIA and ASUS both make SBCs that are comparable to the RP 4 that could also definitely be worth checking out. LibreComputer's price points do make their SBCs appealing though...
Disclaimer
I am based in the US, so the hardware may or may not be available where you are.
Photos


Le Potato with the adapted RP HQ camera connected via USB
Close up of the adapted camera setup. The boards are connected by the orange cable that plugs into CSI sockets on the board.
Details
Additional Hardware
Software Setup
LibreComputer has a few distros that are supported on their system. I set up the Potato with
Raspbian 11 Bullseye for Libre Computer Boards. You can find this in the Potato Downloads to try and get as close to a RP build as possible for proof-of-concept purposes (and I didn't want to have to adapt to a different distro yet 😃 ).
Following @geezacoleman's detailed software installation guide worked beautifully.
If pycoral fails to install during the pip installation, I had success installing the latest version of pycoral with
pip install pycoralTo use the UVC camera in software, simply access the camera using the video stream and not the picamera module.
Adapting the Camera
The lack of a CSI camera interface is quite annoying. Though the camera may be adapted to UVC using the IMX477 from Arducam, the overall performance does take a hit and the camera gets bulkier. Follow the instructions provided by Arducam to connect the adapter board to the HQ camera, and then to the Potato. I was able to run the camera at a comfortable 30 FPS without doing much of anything.
Next Dev Steps
All reactions