use core::marker::PhantomData;
use embedded_hal;
use crate::{
displayrotation::DisplayRotation,
displaysize::DisplaySize,
interface::I2cInterface,
mode::{displaymode::DisplayMode, raw::RawMode},
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() -> Builder {
Builder {
display_size: DisplaySize::Display128x64,
rotation: DisplayRotation::Rotate0,
i2c_addr: 0x3c,
}
}
}
impl Builder {
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: embedded_hal::i2c::I2c,
{
let properties = DisplayProperties::new(
I2cInterface::new(i2c, self.i2c_addr),
self.display_size,
self.rotation,
crate::command::AddrMode::Horizontal,
);
DisplayMode::<RawMode<I2cInterface<I2C>>>::new(properties)
}
}