I recently got my hands on a ZWO ASI120MM Camera, and I wanted to connect & take picutres with it using a Raspberry Pi 3 Model B computer via a USB cable.
After searching online, and reading the ASI Cameras Linux Manual from ZWO, it appears to me that one of the ways to record an image from this camera is to use the OaCapture software.
The OaCapture software is supposedly available from the Open Astro Project page, however in the Downloads section of the webpage, there does not appear to be a version of the software available for my RP OS version (I have Raspian 11 Bullseye, and on the site they only go up to Raspian 10). Moreover, the download links listed in the Downloads section themselves do not appear to work. Clicking on any of them either results in nothing, or a plain text page of a compiled binary.
I managed to find a supposed upload of the OaCapture software on GitHub, and I downloaded it onto my RP. This appears to be a CMAKE project, and according to the INSTALL
file inside the GitHub project, I'm supposed to run the ./configure
command in the Linux terminal on the RP while in the source directory of the project. However, upon running the ./configure
command in the terminal, it prompts me with an unrecognized command error. I noticed that there is an autoconfigure file inside the directory with the filename configure.ac
, so I thought of installing the autoconfig library to my RP. That, however, yielded no results either.
I'm quite a bit confused at this point, as to how I'm supposed to be able to take pictures from this camera.
Is there a different download source for the OaCapture software?
Am I attempting to install the GitHub repository incorrectly?
Is there an entirely different program that I should be using for this? Perhaps OaCapture isn't maintained anymore?
Also, I want to eventually be able to control the camera through a protocol of some sorts, without a GUI interface. I noitced that in the Linux Manual from ZWO there are mentions to the INDI protocol, supposedly used for controlling the camera. Is there a more detailed guide somewhere out there on how to use this protocol, or some other one, for controlling the camera without a GUI interface, solely via the USB cable?
Thanks for reading my post, any guidance is appreciated.