oxy_linux_pwm/
service.rs

1pub struct PwmService {
2    managed_channels: Vec<(u8, u8)>,
3}
4
5impl PwmService {
6    fn new () -> Self {
7        PwmService {
8            managed_channels: Vec::new(),
9        }
10    }
11}