warnings--

This commit is contained in:
2024-11-28 19:38:44 +01:00
parent b1b088eab6
commit 5488f85792
3 changed files with 6 additions and 6 deletions

View File

@ -162,11 +162,11 @@ pub mod rmt {
pub type FastWs2812Esp32Rmt<'a> = LedPixelEsp32Rmt<'a, Rgb<u8>, LedPixelColorGrb24>;
impl Fract8Ops for LedPixelColorGrb24 {
fn blend8(self, other: Self, scale: Fract8) -> Self {
fn blend8(self, _other: Self, _scale: Fract8) -> Self {
self
}
fn scale8(self, scale: Fract8) -> Self {
fn scale8(self, _scale: Fract8) -> Self {
self
}
}