-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathbreathe.rs
54 lines (49 loc) · 1.85 KB
/
breathe.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// Copyright 2016, Paul Osborne <[email protected]>
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/license/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
//
// Portions of this implementation are based on work by Nat Pryce:
// https://github.com/npryce/rusty-pi/blob/master/src/pi/gpio.rs
extern crate sysfs_pwm;
use sysfs_pwm::{Pwm, Result};
// PIN: EHRPWM0A (P9_22)
const BB_PWM_CHIP: u32 = 0;
const BB_PWM_NUMBER: u32 = 0;
fn pwm_increase_to_max(pwm: &Pwm, duration_ms: u32, update_period_ms: u32) -> Result<()> {
let step: f32 = duration_ms as f32 / update_period_ms as f32;
let mut duty_cycle = 0.0;
let period_ns: u32 = pwm.get_period_ns()?;
while duty_cycle < 1.0 {
pwm.set_duty_cycle_ns((duty_cycle * period_ns as f32) as u32)?;
duty_cycle += step;
}
pwm.set_duty_cycle_ns(period_ns)
}
fn pwm_decrease_to_minimum(pwm: &Pwm, duration_ms: u32, update_period_ms: u32) -> Result<()> {
let step: f32 = duration_ms as f32 / update_period_ms as f32;
let mut duty_cycle = 1.0;
let period_ns: u32 = pwm.get_period_ns()?;
while duty_cycle > 0.0 {
pwm.set_duty_cycle_ns((duty_cycle * period_ns as f32) as u32)?;
duty_cycle -= step;
}
pwm.set_duty_cycle_ns(0)
}
/// Make an LED "breathe" by increasing and
/// decreasing the brightness
fn main() {
let pwm = Pwm::new(BB_PWM_CHIP, BB_PWM_NUMBER).unwrap(); // number depends on chip, etc.
pwm.with_exported(|| {
pwm.enable(true).unwrap();
pwm.set_period_ns(20_000).unwrap();
loop {
pwm_increase_to_max(&pwm, 1000, 20).unwrap();
pwm_decrease_to_minimum(&pwm, 1000, 20).unwrap();
}
})
.unwrap();
}