// * DISP_DATE_TIME - display both the date and the time on that date.
// * DISP_RELATIVE_TO_NOW - intelligently display the point in time relative to right now (e.g. "5 secs ago", "3 minutes ago", "1 day ago". Automatically updates as time marches on.
// The initial value is DISP_DATE.
voidsetDisplayMode(DisplayModemode);
voidsetColor(unsignedintcolor);// Text color.
voidsetFont(std::shared_ptr<Font>font);// Font to display with. Default is Font::get(FONT_SIZE_MEDIUM).
voidsetUppercase(booluppercase);// Force text to be uppercase when in DISP_RELATIVE_TO_NOW mode.