CTextLcd allows control of the 16x2 text LCD on the VEXPro. More...
#include <textlcd.h>
Public Member Functions | |
SINGLETON (CTextLcd) | |
This internal macro handles instantiation of this class. | |
void | Clear () |
Clear the LCD of all characters. | |
void | MoveCursor (const unsigned int row, const unsigned int col) |
Move the cursor to the specifed row, column location. | |
int | printf (const char *format,...) |
print to LCD, printf style. | |
void | SetCharacter (const char character) |
output a single character. | |
virtual int | GetProperty (int property, long *value) |
See the definition of IProperty::GetProperty for more information on this method. | |
virtual int | SetProperty (int property, long value) |
See the definition of IProperty::SetProperty for more information on this method. | |
Static Public Attributes | |
static const unsigned int | NUM_ROWS = 2 |
static const unsigned int | NUM_COLUMNS = 16 |
CTextLcd allows control of the 16x2 text LCD on the VEXPro.
To instantiate this class:
// by pointer CTextLcd *plcd = CTextLcd::GetPtr(); // or by reference CTextLcd &lcd = CTextLcd::GetRef();
And when done with this class, call Release(), for each call to GetPtr() or GetRef():
void CTextLcd::Clear | ( | ) |
Clear the LCD of all characters.
int CTextLcd::GetProperty | ( | int | property, | |
long * | value | |||
) | [virtual] |
See the definition of IProperty::GetProperty for more information on this method.
The following properties are supported:
Implements IProperty.
void CTextLcd::MoveCursor | ( | const unsigned int | row, | |
const unsigned int | col | |||
) |
Move the cursor to the specifed row, column location.
row | desired row, either 0, or 1 since it is a 2 row text LCD. | |
col | desired column, 0 thru 15, since it is a 16 column text LCD. |
int CTextLcd::printf | ( | const char * | format, | |
... | ||||
) |
print to LCD, printf style.
format | the format string, same as printf in stdio.h. |
void CTextLcd::SetCharacter | ( | const char | character | ) |
output a single character.
character | character to print. |
int CTextLcd::SetProperty | ( | int | property, | |
long | value | |||
) | [virtual] |
See the definition of IProperty::SetProperty for more information on this method.
The following properties re supported:
Implements IProperty.
CTextLcd::SINGLETON | ( | CTextLcd | ) |
This internal macro handles instantiation of this class.
const unsigned int CTextLcd::NUM_COLUMNS = 16 [static] |
const unsigned int CTextLcd::NUM_ROWS = 2 [static] |