예제 #1
0
void loop()
{
	// Some tests...
	//rows();
	//columns();
	//single();

	// Alphabet
	for (int ascii=0; ascii<41; ascii++)
	{
		//lc.clearDisplay(0);
		lc.displayChar(0,ascii);
		delay(delaytime);
	}
  delay(1000);
}