hikvision-rs

Crates.iohikvision-rs
lib.rshikvision-rs
version0.0.8
sourcesrc
created_at2024-03-21 22:45:28.58516
updated_at2024-06-06 19:38:56.752952
descriptionHigh-level asynchronous library for controlling cameras from Hikvision using the PTZ API
homepage
repository
max_upload_size
id1182117
size11,182
puffy_with_eyes (PuffyWithEyes)

documentation

README

HIKVISION-RS

High-level asynchronous library for controlling cameras from Hikvision using the PTZ API

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
     let mut cam = hikvision::Cam::new("127.0.0.1", 1208, Some(("admin", "12345")), 500).await?;
     cam.zoom_cam(10).await?;

     Ok(())
}
Commit count: 0

cargo fmt