Trait hd44780::hosts::HD44780Host [] [src]

pub trait HD44780Host {
    fn init(&mut self) -> Result<(), Error>;
    fn rs(&mut self, mode: Mode);
    fn enable(&mut self, b: bool);
    fn data4(&mut self, b: bool);
    fn data5(&mut self, b: bool);
    fn data6(&mut self, b: bool);
    fn data7(&mut self, b: bool);
}

A host device the HD44780 is connected to.

Required Methods

Implementors