Skip to content

Instantly share code, notes, and snippets.

@Xplorer001
Last active August 29, 2015 14:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Xplorer001/23d3c552154a3b5776a4 to your computer and use it in GitHub Desktop.
Save Xplorer001/23d3c552154a3b5776a4 to your computer and use it in GitHub Desktop.
#include "glcd.h" //User defined LCD library which conatins the lcd routines
/* start the main program */
void main()
{
GLCD_Init();
GLCD_Printf("Hello World!");
GLCD_GoToLine(4);
GLCD_Printf("*&^%$#@!~");
GLCD_GoToLine(7);
GLCD_DisplayString("Well this is the end!");
while(1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment