/*--------------------------------------------------------------------------------------------------
  Name         :  LCD_writeString_megaFont
  Description  :  Displays a string at current location, in large fonts
  Argument(s)  :  string -> Pointer to ASCII string (stored in RAM)
  Return value :  None.
--------------------------------------------------------------------------------------------------*/
void LCD_writeString_megaFont ( unsigned char *string )
{
	char_start = 0;

	while ( *string )
		LCD_writeChar_megaFont( *string++ );

//	LCD_gotoXY(char_start+6, 3);
//	LCD_writeChar('z'+1); 			  //symbol of Degree
//	LCD_writeChar('C');
}
Beispiel #2
0
/*--------------------------------------------------------------------------------------------------
  Name         :  LCD_writeString_megaFont
  Description  :  Displays a string at current location, in large fonts
  Argument(s)  :  string -> Pointer to ASCII string (stored in RAM)
  Return value :  None.
--------------------------------------------------------------------------------------------------*/
void LCD_writeString_megaFont ( char *string )
{
	char_start = 25;
	
	while ( *string )
		LCD_writeChar_megaFont( *string++ );
	
	LCD_gotoXY(char_start+6, 2);
	//LCD_writeChar('z'+1); 			  //symbol of Degree
	//LCD_writeChar('F');
}