LCD Help

Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob
Anonymous
Not applicable

Hello! I'm new to PSOC programming, but when I tried to upload the following code 

   

 #include <device.h>

   
        
   
    void main()   
   
    {   
   
     char outputstring[32];   
   
     LCD_Start();   
   
        /* Place your initialization/startup code here (e.g. MyInst_Start()) */   
   
        
   
        /* CYGlobalIntEnable; */ /* Uncomment this line to enable global interrupts. */   
   
        for(;;)   
   
        {   
   
     LCD_Position(1,0);   
   
     LCD_PrintString("Hello World");   
   
     LCD_Position(0,0);   
   
            /* Place your application code here. */   
   
        }   
   
    }   
   
        
   
        
   
    Nothing appears on the LCD. I'm using the CY8CKIT-050 development board   
0 Likes
3 Replies