mirror of
https://github.com/esp-rs/esp-hal.git
synced 2025-09-30 05:40:39 +00:00

* Remove the old `pulse_control` driver * Update `esp-hal-smartled` to use the new `rmt` driver instead * Update the `hello_rgb` example for each chip * Update CHANGELOG
101 lines
2.8 KiB
Rust
101 lines
2.8 KiB
Rust
//! RGB LED Demo
|
|
//!
|
|
//! This example drives an 12-element RGB ring that is connected to GPIO33
|
|
//!
|
|
//! The LEDs in the ring are transitioning though the HSV color spectrum for
|
|
//! - Saturation: 255
|
|
//! - Hue: 0 - 255
|
|
//! - Value: 255
|
|
//!
|
|
//! For the 12-element RGB ring to work, building the release version is going
|
|
//! to be required.
|
|
|
|
#![no_std]
|
|
#![no_main]
|
|
|
|
use esp32_hal::{
|
|
clock::ClockControl,
|
|
peripherals,
|
|
prelude::*,
|
|
rmt::Rmt,
|
|
timer::TimerGroup,
|
|
Delay,
|
|
Rtc,
|
|
IO,
|
|
};
|
|
use esp_backtrace as _;
|
|
use esp_hal_smartled::{smartLedAdapter, SmartLedsAdapter};
|
|
use smart_leds::{
|
|
brightness,
|
|
gamma,
|
|
hsv::{hsv2rgb, Hsv},
|
|
SmartLedsWrite,
|
|
};
|
|
|
|
#[entry]
|
|
fn main() -> ! {
|
|
let peripherals = peripherals::Peripherals::take();
|
|
let mut system = peripherals.DPORT.split();
|
|
let clocks = ClockControl::boot_defaults(system.clock_control).freeze();
|
|
|
|
let mut rtc = Rtc::new(peripherals.RTC_CNTL);
|
|
let mut timer_group0 = TimerGroup::new(
|
|
peripherals.TIMG0,
|
|
&clocks,
|
|
&mut system.peripheral_clock_control,
|
|
);
|
|
|
|
// Disable MWDT and RWDT (Watchdog) flash boot protection
|
|
timer_group0.wdt.disable();
|
|
rtc.rwdt.disable();
|
|
|
|
let io = IO::new(peripherals.GPIO, peripherals.IO_MUX);
|
|
|
|
// Configure RMT peripheral globally
|
|
let rmt = Rmt::new(
|
|
peripherals.RMT,
|
|
80u32.MHz(),
|
|
&mut system.peripheral_clock_control,
|
|
&clocks,
|
|
)
|
|
.unwrap();
|
|
|
|
// We use one of the RMT channels to instantiate a `SmartLedsAdapter` which can
|
|
// be used directly with all `smart_led` implementations
|
|
// -> We need to use the macro `smartLedAdapter!` with the number of addressed
|
|
// LEDs here to initialize the internal LED pulse buffer to the correct
|
|
// size!
|
|
let mut led = <smartLedAdapter!(0, 12)>::new(rmt.channel0, io.pins.gpio33);
|
|
|
|
// Initialize the Delay peripheral, and use it to toggle the LED state in a
|
|
// loop.
|
|
let mut delay = Delay::new(&clocks);
|
|
|
|
let mut color = Hsv {
|
|
hue: 0,
|
|
sat: 255,
|
|
val: 255,
|
|
};
|
|
let mut data;
|
|
|
|
loop {
|
|
// Iterate over the rainbow!
|
|
for hue in 0..=255 {
|
|
color.hue = hue;
|
|
// Convert from the HSV color space (where we can easily transition from one
|
|
// color to the other) to the RGB color space that we can then send to the LED
|
|
let rgb_color = hsv2rgb(color);
|
|
|
|
// Assign new color to all 12 LEDs
|
|
data = [rgb_color; 12];
|
|
|
|
// When sending to the LED, we do a gamma correction first (see smart_leds
|
|
// documentation for details) and then limit the brightness to 10 out of 255 so
|
|
// that the output it's not too bright.
|
|
led.write(brightness(gamma(data.iter().cloned()), 10))
|
|
.unwrap();
|
|
delay.delay_ms(20u8);
|
|
}
|
|
}
|
|
}
|