oxy-linux-pwm 0.1.1

A crate for controlling the PWM on the linux
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub struct PwmService {
    managed_channels: Vec<(u8, u8)>,
}

impl PwmService {
    fn new () -> Self {
        PwmService {
            managed_channels: Vec::new(),
        }
    }
}