ili9341-rs/src/lib.rs

315 lines
9.6 KiB
Rust
Raw Normal View History

2018-02-24 13:37:17 +00:00
#![no_std]
2018-06-19 21:29:24 +00:00
#[cfg(feature = "graphics")]
extern crate embedded_graphics;
2020-01-28 17:53:24 +00:00
use embedded_hal::blocking::delay::DelayMs;
use embedded_hal::blocking::spi::{Transfer, Write};
2020-01-28 17:53:24 +00:00
use embedded_hal::digital::v2::OutputPin;
2018-02-24 13:37:17 +00:00
pub mod spi;
use spi::SpiInterface;
2020-02-06 23:10:53 +00:00
pub mod gpio;
2020-01-28 16:45:23 +00:00
/// Trait representing the interface to the hardware.
///
/// Intended to abstract the various buses (SPI, MPU 8/9/16-bit) from the Controller code.
pub trait Interface {
type Error;
/// Sends a command with a sequence of 8-bit arguments
///
/// Mostly used for sending configuration commands
fn write(&mut self, command: u8, data: &[u8]) -> Result<(), Self::Error>;
/// Sends a command with a sequence of 16-bit data words
///
/// Mostly used for sending MemoryWrite command and other commands
/// with 16-bit arguments
fn write_iter(
&mut self,
command: u8,
data: impl IntoIterator<Item = u16>,
) -> Result<(), Self::Error>;
2020-01-28 16:45:23 +00:00
}
const WIDTH: usize = 240;
const HEIGHT: usize = 320;
2018-02-24 13:37:17 +00:00
#[derive(Debug)]
2020-01-28 17:27:04 +00:00
pub enum Error<IfaceE, PinE> {
Interface(IfaceE),
OutputPin(PinE),
2018-02-24 13:37:17 +00:00
}
2020-01-28 17:27:04 +00:00
impl<IfaceE, PinE> From<IfaceE> for Error<IfaceE, PinE> {
fn from(e: IfaceE) -> Self {
Error::Interface(e)
}
}
2018-03-04 17:29:04 +00:00
/// The default orientation is Portrait
2018-03-04 14:43:28 +00:00
pub enum Orientation {
Portrait,
PortraitFlipped,
Landscape,
LandscapeFlipped,
}
2018-03-04 17:44:19 +00:00
/// There are two method for drawing to the screen:
/// [draw_raw](struct.Ili9341.html#method.draw_raw) and
/// [draw_iter](struct.Ili9341.html#method.draw_iter).
///
2018-03-04 17:29:04 +00:00
/// In both cases the expected pixel format is rgb565.
2018-03-04 17:44:19 +00:00
///
2018-03-04 17:29:04 +00:00
/// The hardware makes it efficient to draw rectangles on the screen.
2018-03-04 17:44:19 +00:00
///
2018-03-04 17:29:04 +00:00
/// What happens is the following:
2018-03-04 17:44:19 +00:00
///
2018-03-04 17:29:04 +00:00
/// - A drawing window is prepared (with the 2 opposite corner coordinates)
/// - The starting point for drawint is the top left corner of this window
/// - Every pair of bytes received is intepreted as a pixel value in rgb565
/// - As soon as a pixel is received, an internal counter is incremented,
/// and the next word will fill the next pixel (the adjacent on the right, or
/// the first of the next row if the row ended)
2020-01-28 17:02:35 +00:00
pub struct Ili9341<IFACE, RESET> {
interface: IFACE,
2018-02-24 13:37:17 +00:00
reset: RESET,
width: usize,
height: usize,
}
2020-01-28 17:02:35 +00:00
impl<SpiE, PinE, SPI, CS, DC, RESET> Ili9341<SpiInterface<SPI, CS, DC>, RESET>
2018-02-24 13:37:17 +00:00
where
SPI: Transfer<u8, Error = SpiE> + Write<u8, Error = SpiE>,
CS: OutputPin<Error = PinE>,
DC: OutputPin<Error = PinE>,
RESET: OutputPin<Error = PinE>,
2018-02-24 13:37:17 +00:00
{
2020-01-28 17:02:35 +00:00
pub fn new_spi<DELAY: DelayMs<u16>>(
2018-06-19 21:30:04 +00:00
spi: SPI,
cs: CS,
dc: DC,
reset: RESET,
delay: &mut DELAY,
) -> Result<Self, Error<SpiE, PinE>> {
let interface = SpiInterface::new(spi, cs, dc);
2020-01-28 17:27:04 +00:00
Self::new(interface, reset, delay).map_err(|e| match e {
Error::Interface(inner) => inner,
Error::OutputPin(inner) => Error::OutputPin(inner),
})
2020-01-28 17:02:35 +00:00
}
}
2020-01-28 17:27:04 +00:00
impl<IfaceE, PinE, IFACE, RESET> Ili9341<IFACE, RESET>
where
IFACE: Interface<Error = IfaceE>,
RESET: OutputPin<Error = PinE>,
2020-01-28 17:02:35 +00:00
{
pub fn new<DELAY: DelayMs<u16>>(
interface: IFACE,
reset: RESET,
delay: &mut DELAY,
2020-01-28 17:27:04 +00:00
) -> Result<Self, Error<IfaceE, PinE>> {
2018-02-24 13:37:17 +00:00
let mut ili9341 = Ili9341 {
interface,
2018-02-24 13:37:17 +00:00
reset,
width: WIDTH,
height: HEIGHT,
2018-02-24 13:37:17 +00:00
};
2020-01-28 17:27:04 +00:00
ili9341.hard_reset(delay).map_err(Error::OutputPin)?;
2018-02-24 13:37:17 +00:00
ili9341.command(Command::SoftwareReset, &[])?;
delay.delay_ms(200);
ili9341.command(Command::PowerControlA, &[0x39, 0x2c, 0x00, 0x34, 0x02])?;
ili9341.command(Command::PowerControlB, &[0x00, 0xc1, 0x30])?;
ili9341.command(Command::DriverTimingControlA, &[0x85, 0x00, 0x78])?;
ili9341.command(Command::DriverTimingControlB, &[0x00, 0x00])?;
ili9341.command(Command::PowerOnSequenceControl, &[0x64, 0x03, 0x12, 0x81])?;
ili9341.command(Command::PumpRatioControl, &[0x20])?;
ili9341.command(Command::PowerControl1, &[0x23])?;
ili9341.command(Command::PowerControl2, &[0x10])?;
ili9341.command(Command::VCOMControl1, &[0x3e, 0x28])?;
ili9341.command(Command::VCOMControl2, &[0x86])?;
ili9341.command(Command::MemoryAccessControl, &[0x48])?;
ili9341.command(Command::PixelFormatSet, &[0x55])?;
ili9341.command(Command::FrameControlNormal, &[0x00, 0x18])?;
ili9341.command(Command::DisplayFunctionControl, &[0x08, 0x82, 0x27])?;
ili9341.command(Command::Enable3G, &[0x00])?;
ili9341.command(Command::GammaSet, &[0x01])?;
ili9341.command(
Command::PositiveGammaCorrection,
&[
0x0f, 0x31, 0x2b, 0x0c, 0x0e, 0x08, 0x4e, 0xf1, 0x37, 0x07, 0x10, 0x03, 0x0e, 0x09,
0x00,
],
)?;
ili9341.command(
Command::NegativeGammaCorrection,
&[
0x00, 0x0e, 0x14, 0x03, 0x11, 0x07, 0x31, 0xc1, 0x48, 0x08, 0x0f, 0x0c, 0x31, 0x36,
0x0f,
],
)?;
ili9341.command(Command::SleepOut, &[])?;
delay.delay_ms(120);
ili9341.command(Command::DisplayOn, &[])?;
Ok(ili9341)
}
fn hard_reset<DELAY: DelayMs<u16>>(&mut self, delay: &mut DELAY) -> Result<(), PinE> {
2018-02-24 13:37:17 +00:00
// set high if previously low
2020-01-28 17:27:04 +00:00
self.reset.set_high()?;
2018-02-24 13:37:17 +00:00
delay.delay_ms(200);
// set low for reset
2020-01-28 17:27:04 +00:00
self.reset.set_low()?;
2018-02-24 13:37:17 +00:00
delay.delay_ms(200);
// set high for normal operation
2020-01-28 17:27:04 +00:00
self.reset.set_high()?;
2018-02-24 13:37:17 +00:00
delay.delay_ms(200);
Ok(())
2018-02-24 13:37:17 +00:00
}
2020-01-28 17:03:35 +00:00
2020-01-28 17:27:04 +00:00
fn command(&mut self, cmd: Command, args: &[u8]) -> Result<(), IFACE::Error> {
self.interface.write(cmd as u8, args)
2018-02-24 13:37:17 +00:00
}
2020-01-28 17:03:35 +00:00
fn write_iter<I: IntoIterator<Item = u16>>(&mut self, data: I) -> Result<(), IFACE::Error> {
self.interface.write_iter(Command::MemoryWrite as u8, data)
2018-02-24 13:37:17 +00:00
}
2020-01-28 17:03:35 +00:00
2020-01-28 17:27:04 +00:00
fn set_window(&mut self, x0: u16, y0: u16, x1: u16, y1: u16) -> Result<(), IFACE::Error> {
2018-02-24 13:37:17 +00:00
self.command(
Command::ColumnAddressSet,
&[
(x0 >> 8) as u8,
(x0 & 0xff) as u8,
(x1 >> 8) as u8,
(x1 & 0xff) as u8,
],
)?;
self.command(
Command::PageAddressSet,
&[
(y0 >> 8) as u8,
(y0 & 0xff) as u8,
(y1 >> 8) as u8,
(y1 & 0xff) as u8,
],
)?;
Ok(())
}
2020-01-28 17:03:35 +00:00
2018-03-04 17:29:04 +00:00
/// Draw a rectangle on the screen, represented by top-left corner (x0, y0)
2018-03-04 17:44:19 +00:00
/// and bottom-right corner (x1, y1).
///
/// The border is included.
///
2018-03-04 17:29:04 +00:00
/// This method accepts an iterator of rgb565 pixel values.
2018-03-04 17:44:19 +00:00
///
2018-03-04 17:29:04 +00:00
/// The iterator is useful to avoid wasting memory by holding a buffer for
/// the whole screen when it is not necessary.
2018-06-19 21:30:04 +00:00
pub fn draw_iter<I: IntoIterator<Item = u16>>(
&mut self,
x0: u16,
y0: u16,
x1: u16,
y1: u16,
data: I,
2020-01-28 17:27:04 +00:00
) -> Result<(), IFACE::Error> {
2018-02-24 13:37:17 +00:00
self.set_window(x0, y0, x1, y1)?;
self.write_iter(data)
}
2020-01-28 17:03:35 +00:00
2018-03-04 17:29:04 +00:00
/// Draw a rectangle on the screen, represented by top-left corner (x0, y0)
2018-03-04 17:44:19 +00:00
/// and bottom-right corner (x1, y1).
///
/// The border is included.
///
2020-01-28 17:35:30 +00:00
/// This method accepts a raw buffer of words that will be copied to the screen
2018-03-04 17:44:19 +00:00
/// video memory.
///
2020-01-28 17:35:30 +00:00
/// The expected format is rgb565.
2018-06-19 21:30:04 +00:00
pub fn draw_raw(
&mut self,
x0: u16,
y0: u16,
x1: u16,
y1: u16,
2020-01-28 17:35:30 +00:00
data: &[u16],
2020-01-28 17:27:04 +00:00
) -> Result<(), IFACE::Error> {
2018-02-24 13:37:17 +00:00
self.set_window(x0, y0, x1, y1)?;
2020-01-28 17:35:30 +00:00
self.write_iter(data.iter().cloned())
2018-02-24 13:37:17 +00:00
}
2020-01-28 17:03:35 +00:00
2018-03-04 17:29:04 +00:00
/// Change the orientation of the screen
2020-01-28 17:27:04 +00:00
pub fn set_orientation(&mut self, mode: Orientation) -> Result<(), IFACE::Error> {
2018-03-04 14:43:28 +00:00
match mode {
Orientation::Portrait => {
self.width = WIDTH;
self.height = HEIGHT;
2018-06-19 21:30:04 +00:00
self.command(Command::MemoryAccessControl, &[0x40 | 0x08])
}
2018-03-04 14:43:28 +00:00
Orientation::Landscape => {
self.width = HEIGHT;
self.height = WIDTH;
2018-06-19 21:30:04 +00:00
self.command(Command::MemoryAccessControl, &[0x20 | 0x08])
}
2018-03-04 14:43:28 +00:00
Orientation::PortraitFlipped => {
self.width = WIDTH;
self.height = HEIGHT;
2018-06-19 21:30:04 +00:00
self.command(Command::MemoryAccessControl, &[0x80 | 0x08])
}
2018-03-04 14:43:28 +00:00
Orientation::LandscapeFlipped => {
self.width = HEIGHT;
self.height = WIDTH;
2018-06-19 21:30:04 +00:00
self.command(Command::MemoryAccessControl, &[0x40 | 0x80 | 0x20 | 0x08])
}
2018-02-24 13:37:17 +00:00
}
}
2020-01-28 17:03:35 +00:00
2018-03-04 17:29:04 +00:00
/// Get the current screen width. It can change based on the current orientation
2018-02-24 13:37:17 +00:00
pub fn width(&self) -> usize {
self.width
}
2020-01-28 17:03:35 +00:00
2018-03-04 17:29:04 +00:00
/// Get the current screen heighth. It can change based on the current orientation
2018-02-24 13:37:17 +00:00
pub fn height(&self) -> usize {
self.height
}
}
#[cfg(feature = "graphics")]
mod graphics;
2018-06-19 21:29:24 +00:00
2018-02-24 13:37:17 +00:00
#[derive(Clone, Copy)]
enum Command {
SoftwareReset = 0x01,
PowerControlA = 0xcb,
PowerControlB = 0xcf,
DriverTimingControlA = 0xe8,
DriverTimingControlB = 0xea,
PowerOnSequenceControl = 0xed,
PumpRatioControl = 0xf7,
PowerControl1 = 0xc0,
PowerControl2 = 0xc1,
VCOMControl1 = 0xc5,
VCOMControl2 = 0xc7,
MemoryAccessControl = 0x36,
PixelFormatSet = 0x3a,
FrameControlNormal = 0xb1,
DisplayFunctionControl = 0xb6,
Enable3G = 0xf2,
GammaSet = 0x26,
PositiveGammaCorrection = 0xe0,
NegativeGammaCorrection = 0xe1,
SleepOut = 0x11,
DisplayOn = 0x29,
ColumnAddressSet = 0x2a,
PageAddressSet = 0x2b,
MemoryWrite = 0x2c,
}