Interface with your Blackmagic camera over Bluetooth in Rust!

This library allows you to easily communicate with your Blackmagic camera over Bluetooth.

Usage

You can test the library easy by opening examples/control.rs, replacing the CAMERANAME_ const with your cameras bluetooth name and then running cargo run --example control

```rust //Create a new camera with the device name let mut camera = BluetoothCamera::new(CAMERA_NAME).await.unwrap();

//Connect with a set timeout camera.connect(Duration::from_secs(10)).await.unwrap();

//Change the ISO to 320 camera.write(255, Operation::AssignValue, Command::Video(Video::Iso(640))).await.unwrap(); ```

How does it work?

The library consumes the PROTOCOL.json file which documents the camera protocol in a machine readable format. From there it generates the commands as rust enums during the build stage (see /build). This allows us to have statically typed addressing of camera features without manually writing the code, rather relying on the conversion from the camera protocol manual. The library takes care of packaging down the commands into the camera protocol.

Contributing

Just open a PR LUL

License

All under MIT