use crate;
use Duration;
/// Camsense-X1 LiDAR sensor driver configuration.
///
/// Use [`Config::default`] for typical sensor orientations, or construct
/// manually to correct for non-standard mounting.
///
/// # Example
/// ```rust
/// use std::time::Duration;
/// let config = Config { angle_offset: 28.5, update_interval: Duration::from_micros(10) };
/// let lidar = Camsense::with_config(uart, delay, config);
/// ```