Struct pwr_hd44780::frontends::Buffered [] [src]

pub struct Buffered { /* fields omitted */ }

Methods

impl Buffered
[src]

[src]

Creates a new buffered HD44780 basing on previously existing direct one.

[src]

Refreshes the screen.

[src]

Prints text at current cursor's position and moves to the next line.

Trait Implementations

impl Hd44780 for Buffered
[src]

[src]

Clears the screen and moves cursor at (0, 0).

[src]

Moves the cursor at (0, 0).

[src]

Moves the cursor at given position. When passed an invalid coordinates (eg. beyond the screen), does nothing. Read more

[src]

Prints a single ASCII character and moves cursor.

[src]

Enables / disables the backlight.

[src]

Enables / disables blinking the cursor. Blinking = whole 5x8 / 5x10 character is blinking, Read more

[src]

Enables / disables the cursor. Visible = only bottom of the character is blinking. Read more

[src]

Shows / hides the text.

[src]

Creates a custom character from given bitmap. Read more

[src]

Returns screen's height (number of lines).

[src]

Returns screen's width (number of characters per line).

[src]

Prints a string at current cursor's position.