/* Draw lines */ //#include #include #include int main() { InitLib(); TimerOpen(); if(InitLCD()>0) Print("\nLCD wrong"); Line(128,1, 1,64,1); Line(1,1,128,1, 1); Line(128,1,128,64,1); Line(128,64,1,64, 1); Line(1,64,1,1, 1); Delay(5000); CloseLCD(); return 0; }