blackmagic-camera-control 0.2.2

Interface with your Blackmagic camera over Bluetooth Low Energy in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[cfg(feature = "ble")]
pub mod blecamera;
#[cfg(feature = "ble")]
pub use blecamera::BluetoothCamera;

pub mod error;
pub mod rawcommand;

pub mod command {
    include!(concat!(env!("OUT_DIR"), "/command.rs"));
}

//Exports
pub use rawcommand::Operation;