///////////////////////////////////////////////////////////////////////////////////////////////////////
//
//                                    Test Large FONT Drawing
//
// Characters in standard firmware use a 6W x 8H FONT.
//
// RobotC also supports a larger font of 12W x 16H pixels.
//
// This sample program shows how to use the larger font. It's very easy!
//
// 'nxtDisplayStringAt'     This function formats and displays a string at the specified coordinates
//                          on the NXT LCD screen using the standard 6 x 8 font.
//
// 'nxtDisplayBitStringAt'  Identical to the preceding function except it uses the large font!

///////////////////////////////////////////////////////////////////////////////////////////////////////

#pragma platform(NXT)   // Program applies only to the NXT platform

{
	int nIndex;

	for (nIndex = 0; nIndex < 10000; nIndex += 10)
	{
  	nxtDisplayStringAt(0, 31, "Standard %d.", nIndex);
  	nxtDisplayBigStringAt(0, 15, "Big %d.", nIndex);
		wait1Msec(100);
	}
	return;
}