You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-firmware/core/embed/rust/src/trezorhal/rgb_led.rs

8 lines
108 B

use super::ffi;
pub fn set_color(color: u32) {
unsafe {
ffi::rgb_led_set_color(color);
}
}