ConVEX supports two VEX LCD displays connected to the serial ports which are both initialized by default.
The following simple functions are used to display text and numbers.
vexLcdSet(int16_t display, int16_t line, char *buf)
vexLcdSetAt(int16_t display, int16_t line, int16_t col, char *buf)
vexLcdPrintf(int16_t display, int16_t line, char *fmt,...)
vexLcdPrintfAt(int16_t display, int16_t line, int16_t col, char *fmt,...)
vexLcdClearLine(int16_t display, int16_t line)
vexLcdBacklight(int16_t display, int16_t value)
LCD buttons can be read using the following.