Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pedrosland/rascam
Rust library for the Raspberry Pi Camera
https://github.com/pedrosland/rascam
Last synced: 3 months ago
JSON representation
Rust library for the Raspberry Pi Camera
- Host: GitHub
- URL: https://github.com/pedrosland/rascam
- Owner: pedrosland
- License: mit
- Created: 2018-03-26T23:06:36.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2024-03-06T05:47:43.000Z (12 months ago)
- Last Synced: 2024-10-31T11:54:43.707Z (4 months ago)
- Language: Rust
- Size: 9.64 MB
- Stars: 120
- Watchers: 4
- Forks: 17
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Rascam
Rust library for interacting with the Raspberry Pi Camera.
This provides a friendly, high level API over the [mmal-sys](https://crates.io/crates/mmal-sys) library.
There are three main components in this library:
* Info - Describe the attached camera.
* SimpleCamera - Aims to provide a simple, easy to use API.
* SeriousCamera - This API is very unstable and will likely change! Aims to expose the power of the `mmal-sys`'s camera while providing a safe Rust API.## Documentation and examples
Please see the [documentation](https://pedrosland.github.io/rascam/) and [examples](https://github.com/pedrosland/rascam/tree/master/examples).
## Usage
Add the following to your Cargo.toml, changing `0.0.2` for the latest release:
```toml
[dependencies]
rascam = "0.0.2"
```Check out the [SimpleCamera example](https://github.com/pedrosland/rascam/blob/master/examples/simple.rs) to get started quickly.
This crate uses [tracing](https://crates.io/crates/tracing) to produce logging events.
If things are crashing or producing unexpected results, you can print the logs by adding the [tracing-subscriber](https://crates.io/crates/tracing-subscriber) crate to your project.
Enable the logging by putting `tracing_subscriber::fmt::init();` at the top of your `main()` function. Set the `RUST_LOG` environment variable to `DEBUG`.
For example, this can be done by calling cargo like this: `$ RUST_LOG=DEBUG cargo run`.```toml
[dependencies]
rascam = { version = "0.0.1" }
```## License
Released under the MIT license.