Skip to content

Latest commit

 

History

History
86 lines (56 loc) · 2.62 KB

README.md

File metadata and controls

86 lines (56 loc) · 2.62 KB

qhyccd-rs

Crates.io Documentation Codecov Dependency status

libqhyccd bindings for Rust.

Current bindings are not complete, but will grow as functionality is needed for the ASCOM alpaca drivers or other projects. It is very early in the dev cycle and I am still learning a ton about Rust, so things might be in flux for a while.

[dependencies]
qhyccd-rs = "0.1.6"

Rust version requirements

qhyccd-rs works with stable Rust. The minimum required Rust version is 1.65.0.

Version of libqhyccd

Currently the library works with QHYCCD SDK 24.12.26. The focus of this development here is Linux, specifically AARCH64-based flavors, although CI is testing for x64 compatibility as well.

License

This project is licensed under either of

at your option.

The repository contains files from the QHYCCD SDK, these are not covered by these licenses and only provided, so builds in CI pass reasonably.

Contribution

All contributions are welcome.

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in qhyccd-rs by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Quick Start

Install libusb-1.0-dev

Debian / Ubuntu

sudo apt-get install libusb-1.0-0-dev

Fedora

sudo dnf install libusb1-devel

Install QHYCCD SDK

ARM

wget https://www.qhyccd.com/file/repository/publish/SDK/24.12.26/sdk_Arm64_24.12.26.tgz
tar xzvf sdk_Arm64_24.12.26.tgz 
cd sdk_Arm64_24.12.26/
sudo sh install.sh 

Linux_64

wget https://www.qhyccd.com/file/repository/publish/SDK/24.12.26/sdk_linux64_24.12.27.tgz
tar xzvf sdk_linux64_24.12.27.tgz
cd sdk_linux64_24.12.27/
sudo sh install.sh 

Usage Examples

src/bin/LiveFrameMode.rs

src/bin/SingleFrameMode.rs