mirror of
https://github.com/embassy-rs/embassy.git
synced 2024-11-22 23:02:30 +00:00
30 lines
826 B
Rust
30 lines
826 B
Rust
//! This example shows how to use PWM (Pulse Width Modulation) in the RP2040 chip.
|
|
//!
|
|
//! The LED on the RP Pico W board is connected differently. Add a LED and resistor to another pin.
|
|
|
|
#![no_std]
|
|
#![no_main]
|
|
|
|
use defmt::*;
|
|
use embassy_executor::Spawner;
|
|
use embassy_rp::pwm::{Config, Pwm};
|
|
use embassy_time::Timer;
|
|
use {defmt_rtt as _, panic_probe as _};
|
|
|
|
#[embassy_executor::main]
|
|
async fn main(_spawner: Spawner) {
|
|
let p = embassy_rp::init(Default::default());
|
|
|
|
let mut c: Config = Default::default();
|
|
c.top = 0x8000;
|
|
c.compare_b = 8;
|
|
let mut pwm = Pwm::new_output_b(p.PWM_SLICE4, p.PIN_25, c.clone());
|
|
|
|
loop {
|
|
info!("current LED duty cycle: {}/32768", c.compare_b);
|
|
Timer::after_secs(1).await;
|
|
c.compare_b = c.compare_b.rotate_left(4);
|
|
pwm.set_config(&c);
|
|
}
|
|
}
|