use crate::predictor::Controller;
use std::{thread, time::Duration};
#[derive(Default)]
pub struct Capturer {}
impl super::Capturer for Capturer {
fn run(&self, _output_name: &str, mut controller: Controller) {
loop {
controller.adjust(0);
thread::sleep(Duration::from_millis(200));
}
}
}