CS计算机代考程序代写 // LCD example

// LCD example

#include
#include “c12832.H”

int main(void)
{
SystemCoreClockUpdate(); // Optional- Setup SystemCoreClock variable
// Configure LED outputs
LCD_Config();
init_LCD();
cls();

/***********************************************************/
/* Following code is for LCD testing, delete after testing */
putstr(1,1,” Welcome to ENG2008″);
putstr(2,1,” Microcontroller”);
putstr(3,1,” Engineering”);
/***********************************************************/

while(1){
// add your code here
};
}