Ejemplo n.º 1
0
void
LCDLine_2_clear()
{
	int i;

	LCDLine_2();

	for (i = 0; i < 16; i++)
		LCD_dwrite(' ');	// wipe off any stale characters

	LCDLine_2();
}
void lcd_write(char foo, char bar)
{
	LCDLine_1();
	string_write(foo);
	LCDLine_2();
	string_write(bar);

}//end lcd_write
Ejemplo n.º 3
0
void
LCD_puts_from_rom(char line, rom_ptr const char *str)
{
	int i;

	if (line == 1)
		LCDLine_1();
	else
		LCDLine_2();

	for (i = 0; str[i] != 0; i++)
		LCD_dwrite(str[i]);	// write new

	for (; i < 16; i++)
		LCD_dwrite(' ');	// wipe off any stale characters
}