use hal;
use hal::digital::OutputPin;
use crate::displayrotation::DisplayRotation;
use crate::displaysize::DisplaySize;
use crate::interface::{I2cInterface, SpiInterface};
use crate::mode::displaymode::DisplayMode;
use crate::mode::raw::RawMode;
use crate::properties::DisplayProperties;
#[derive(Clone, Copy)]
pub struct Builder {
display_size: DisplaySize,
rotation: DisplayRotation,
i2c_addr: u8,
}
impl Default for Builder {
fn default() -> Self {
Self::new()
}
}
impl Builder {
pub fn new() -> Self {
Self {
display_size: DisplaySize::Display128x64,
rotation: DisplayRotation::Rotate0,
i2c_addr: 0x3c,
}
}
pub fn with_size(&self, display_size: DisplaySize) -> Self {
Self {
display_size,
..*self
}
}
pub fn with_i2c_addr(&self, i2c_addr: u8) -> Self {
Self { i2c_addr, ..*self }
}
pub fn with_rotation(&self, rotation: DisplayRotation) -> Self {
Self { rotation, ..*self }
}
pub fn connect_i2c<I2C>(&self, i2c: I2C) -> DisplayMode<RawMode<I2cInterface<I2C>>>
where
I2C: hal::blocking::i2c::Write,
{
let properties = DisplayProperties::new(
I2cInterface::new(i2c, self.i2c_addr),
self.display_size,
self.rotation,
);
DisplayMode::<RawMode<I2cInterface<I2C>>>::new(properties)
}
pub fn connect_spi<SPI, DC>(
&self,
spi: SPI,
dc: DC,
) -> DisplayMode<RawMode<SpiInterface<SPI, DC>>>
where
SPI: hal::blocking::spi::Transfer<u8> + hal::blocking::spi::Write<u8>,
DC: OutputPin,
{
let properties =
DisplayProperties::new(SpiInterface::new(spi, dc), self.display_size, self.rotation);
DisplayMode::<RawMode<SpiInterface<SPI, DC>>>::new(properties)
}
}