mirror of
https://github.com/yuri91/ili9341-rs.git
synced 2024-11-21 14:30:58 +00:00
Move embedded_graphics code in graphics.rs
This commit is contained in:
parent
6bdd8e6e37
commit
651aba971b
2 changed files with 82 additions and 81 deletions
81
src/graphics.rs
Normal file
81
src/graphics.rs
Normal file
|
@ -0,0 +1,81 @@
|
|||
use crate::{Ili9341, Interface, OutputPin};
|
||||
|
||||
use core::fmt::Debug;
|
||||
|
||||
use embedded_graphics::{
|
||||
drawable::Pixel,
|
||||
geometry::{Point, Size},
|
||||
pixelcolor::{
|
||||
raw::{RawData, RawU16},
|
||||
Rgb565,
|
||||
},
|
||||
primitives::Rectangle,
|
||||
style::{PrimitiveStyle, Styled},
|
||||
DrawTarget,
|
||||
};
|
||||
|
||||
impl<IfaceE, PinE, IFACE, RESET> DrawTarget<Rgb565> for Ili9341<IFACE, RESET>
|
||||
where
|
||||
IFACE: Interface<Error = IfaceE>,
|
||||
RESET: OutputPin<Error = PinE>,
|
||||
IfaceE: Debug,
|
||||
PinE: Debug,
|
||||
{
|
||||
type Error = IFACE::Error;
|
||||
|
||||
fn size(&self) -> Size {
|
||||
Size::new(self.width as u32, self.height as u32)
|
||||
}
|
||||
fn draw_pixel(&mut self, pixel: Pixel<Rgb565>) -> Result<(), Self::Error> {
|
||||
let Pixel(pos, color) = pixel;
|
||||
|
||||
if pos.x < 0 || pos.y < 0 || pos.x >= self.width as i32 || pos.y >= self.height as i32 {
|
||||
return Ok(());
|
||||
}
|
||||
|
||||
self.draw_raw(
|
||||
pos.x as u16,
|
||||
pos.y as u16,
|
||||
pos.x as u16,
|
||||
pos.y as u16,
|
||||
&[RawU16::from(color).into_inner()],
|
||||
)
|
||||
}
|
||||
fn draw_rectangle(
|
||||
&mut self,
|
||||
item: &Styled<Rectangle, PrimitiveStyle<Rgb565>>,
|
||||
) -> Result<(), Self::Error> {
|
||||
let Point { x: x0, y: y0 } = item.primitive.top_left;
|
||||
let Point { x: x1, y: y1 } = item.primitive.bottom_right;
|
||||
let w = self.width as i32;
|
||||
let h = self.height as i32;
|
||||
if x0 >= w || y0 >= h {
|
||||
return Ok(());
|
||||
}
|
||||
fn clamp(v: i32, max: i32) -> u16 {
|
||||
if v < 0 {
|
||||
0
|
||||
} else if v > max {
|
||||
max as u16
|
||||
} else {
|
||||
v as u16
|
||||
}
|
||||
}
|
||||
let x0 = clamp(x0, w - 1);
|
||||
let y0 = clamp(y0, h - 1);
|
||||
let x1 = clamp(x1, w - 1);
|
||||
let y1 = clamp(y1, h - 1);
|
||||
self.draw_iter(
|
||||
x0,
|
||||
y0,
|
||||
x1,
|
||||
y1,
|
||||
item.into_iter()
|
||||
.filter(|p| {
|
||||
let Point { x, y } = p.0;
|
||||
x >= 0 && y >= 0 && x < w && y < h
|
||||
})
|
||||
.map(|p| RawU16::from(p.1).into_inner()),
|
||||
)
|
||||
}
|
||||
}
|
82
src/lib.rs
82
src/lib.rs
|
@ -7,9 +7,6 @@ use embedded_hal::blocking::delay::DelayMs;
|
|||
use embedded_hal::blocking::spi::{Transfer, Write};
|
||||
use embedded_hal::digital::v2::OutputPin;
|
||||
|
||||
use core::fmt::Debug;
|
||||
use core::iter::IntoIterator;
|
||||
|
||||
pub mod spi;
|
||||
use spi::SpiInterface;
|
||||
|
||||
|
@ -286,84 +283,7 @@ where
|
|||
}
|
||||
|
||||
#[cfg(feature = "graphics")]
|
||||
use embedded_graphics::{
|
||||
drawable::Pixel,
|
||||
geometry::{Point, Size},
|
||||
pixelcolor::{
|
||||
raw::{RawData, RawU16},
|
||||
Rgb565,
|
||||
},
|
||||
primitives::Rectangle,
|
||||
style::{PrimitiveStyle, Styled},
|
||||
DrawTarget,
|
||||
};
|
||||
|
||||
#[cfg(feature = "graphics")]
|
||||
impl<IfaceE, PinE, IFACE, RESET> DrawTarget<Rgb565> for Ili9341<IFACE, RESET>
|
||||
where
|
||||
IFACE: Interface<Error = IfaceE>,
|
||||
RESET: OutputPin<Error = PinE>,
|
||||
IfaceE: Debug,
|
||||
PinE: Debug,
|
||||
{
|
||||
type Error = IFACE::Error;
|
||||
|
||||
fn size(&self) -> Size {
|
||||
Size::new(self.width as u32, self.height as u32)
|
||||
}
|
||||
fn draw_pixel(&mut self, pixel: Pixel<Rgb565>) -> Result<(), Self::Error> {
|
||||
let Pixel(pos, color) = pixel;
|
||||
|
||||
if pos.x < 0 || pos.y < 0 || pos.x >= self.width as i32 || pos.y >= self.height as i32 {
|
||||
return Ok(());
|
||||
}
|
||||
|
||||
self.draw_raw(
|
||||
pos.x as u16,
|
||||
pos.y as u16,
|
||||
pos.x as u16,
|
||||
pos.y as u16,
|
||||
&[RawU16::from(color).into_inner()],
|
||||
)
|
||||
}
|
||||
fn draw_rectangle(
|
||||
&mut self,
|
||||
item: &Styled<Rectangle, PrimitiveStyle<Rgb565>>,
|
||||
) -> Result<(), Self::Error> {
|
||||
let Point { x: x0, y: y0 } = item.primitive.top_left;
|
||||
let Point { x: x1, y: y1 } = item.primitive.bottom_right;
|
||||
let w = self.width as i32;
|
||||
let h = self.height as i32;
|
||||
if x0 >= w || y0 >= h {
|
||||
return Ok(());
|
||||
}
|
||||
fn clamp(v: i32, max: i32) -> u16 {
|
||||
if v < 0 {
|
||||
0
|
||||
} else if v > max {
|
||||
max as u16
|
||||
} else {
|
||||
v as u16
|
||||
}
|
||||
}
|
||||
let x0 = clamp(x0, w - 1);
|
||||
let y0 = clamp(y0, h - 1);
|
||||
let x1 = clamp(x1, w - 1);
|
||||
let y1 = clamp(y1, h - 1);
|
||||
self.draw_iter(
|
||||
x0,
|
||||
y0,
|
||||
x1,
|
||||
y1,
|
||||
item.into_iter()
|
||||
.filter(|p| {
|
||||
let Point { x, y } = p.0;
|
||||
x >= 0 && y >= 0 && x < w && y < h
|
||||
})
|
||||
.map(|p| RawU16::from(p.1).into_inner()),
|
||||
)
|
||||
}
|
||||
}
|
||||
mod graphics;
|
||||
|
||||
#[derive(Clone, Copy)]
|
||||
enum Command {
|
||||
|
|
Loading…
Reference in a new issue