Display.hpp
Submitted by Webbot on January 2, 2009 - 12:22am.
This is an abstract class that defines an interface for any kind of display. It only defines the one method:
void display(uint8_t c);
This means that any kind of 'Display' must be able to display a character.
|