CCS C Software and Maintenance Offers
FAQFAQ   FAQForum Help   FAQOfficial CCS Support   SearchSearch  RegisterRegister 

ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

CCS does not monitor this forum on a regular basis.

Please do not post bug reports on this forum. Send them to support@ccsinfo.com

Problem on Interfacing VCM162A LCD display with PIC16F877A

 
Post new topic   Reply to topic    CCS Forum Index -> General CCS C Discussion
View previous topic :: View next topic  
Author Message
loops0901



Joined: 01 Apr 2012
Posts: 5
Location: Malaysia

View user's profile Send private message AIM Address

Problem on Interfacing VCM162A LCD display with PIC16F877A
PostPosted: Sun Apr 01, 2012 9:11 pm     Reply with quote

Hi,
I am doing a simple project regarding interfacing LCD display with PIC16F877A. I am using CCS C compiler to produce HEX file. Then i use MPLAB IDE with PicSTART Plus to program the PIC. However, the LCD display does not worked with the program written where it shows blacked out with the backlight on. The model for LCD display used are VCM162A. Please help me checked whether where i had been done wrongly. Below are the codes and circuit :
Code:
#include <16F877A.h>
#use delay(clock=2000000)
#fuses HS,NOWDT,NOPROTECT,NOLVP

#define use_portb_lcd TRUE
#include <lcd.c>

int i;
int a,b,c;
char x[]={'W','e','l','c','o','m','e',' ','T','o',' ','M','i','c','r','o','-','C'};
void main()
{
 lcd_init();
      while (TRUE) {
      for(a=0;a>=0;a++){
         if(a==0){
            printf(lcd_putc,"     READY!");
            delay_ms(20);
            printf(lcd_putc,"\f");
            printf(lcd_putc,"    loading\n");
            for(b=0;b<3;b++){
               for(c=0;c<16;c++){
                  printf(lcd_putc,".");
                  delay_ms(3);
                  }
               if(b==1)
                  printf(lcd_putc,"\n");
               else
                  printf(lcd_putc,"\f");
            }

          }
         else{
            lcd_getc(3,1);
            for(i=0;i<=17;i++){

               printf(lcd_putc,"%c",x[i]);
               delay_ms(11);
               if(i==9){
                 lcd_getc(4,2);
               }

            }
            delay_ms(20);
            printf(lcd_putc,"\f");
         }
      }
   }
}





Thank you very much
PCM programmer



Joined: 06 Sep 2003
Posts: 21708

View user's profile Send private message

PostPosted: Sun Apr 01, 2012 9:49 pm     Reply with quote

Your program is too complicated for an LCD test program. Try a more
simple program. Example:
Code:

#include <16F877A.H>
#fuses XT, NOWDT, NOPROTECT, BROWNOUT, PUT, NOLVP
#use delay(clock=4M)

#define use_portb_lcd TRUE    // LCD is on port B
#include <lcd.c>

//===================================
void main()
{
lcd_init();

lcd_putc("Hello World");

while(1);
}
 
temtronic



Joined: 01 Jul 2010
Posts: 9161
Location: Greensville,Ontario

View user's profile Send private message

PostPosted: Mon Apr 02, 2012 5:26 am     Reply with quote

also.. while you say you're using the 'VCM162A' LCD your schematic lists an 'LM016L' LCD.

Be sure to check the entire datasheets to be 100% sure that they are the same! There could be some timing differences or other criteria that may not allow the VCM162A to perform using the LCD.C driver.

The simply LCD test program given will quickly tell !

Always start small...build upon small sucesses.
loops0901



Joined: 01 Apr 2012
Posts: 5
Location: Malaysia

View user's profile Send private message AIM Address

PostPosted: Mon Apr 02, 2012 9:46 pm     Reply with quote

I had tried the simple circuit as well but it still does't work for me... The result is still the same where it only show black blocks in a line.

The circuit that i posted is to show the connection of PIC and LCD display. In Proteus Software , model VCM162A does not included in the library. So i just simply replace LCD with the model available in the proteus. I had checked datasheet as well and their connection pins between VCM162A and LM016L are the same.
loops0901



Joined: 01 Apr 2012
Posts: 5
Location: Malaysia

View user's profile Send private message AIM Address

PostPosted: Mon Apr 02, 2012 10:30 pm     Reply with quote

I found that VCM162A's controller is KS0066. Does this controller capable to perform using LCD.C driver?
PCM programmer



Joined: 06 Sep 2003
Posts: 21708

View user's profile Send private message

PostPosted: Tue Apr 03, 2012 3:51 pm     Reply with quote

Quote:
#include <16F877A.h>
#use delay(clock=2000000)
#fuses HS,NOWDT,NOPROTECT,NOLVP

In the #use delay() statement above, you have done the usual mistake
of dropping a 0 from the frequency. You have set it for 2 MHz.
You probably really want it to be set for 20 MHz.

I recommend that you do it like this:
Quote:

#include <16F877A.h>
#use delay(clock=20M)
#fuses HS,NOWDT,NOPROTECT,NOLVP

The compiler accepts that frequency notation and it's much easier to see
that it's correct when you type it.
loops0901



Joined: 01 Apr 2012
Posts: 5
Location: Malaysia

View user's profile Send private message AIM Address

PostPosted: Sat Apr 07, 2012 3:26 am     Reply with quote

Hi, my LCD worked with the flex_lcd driver. Thank you so much Very Happy Very Happy
Display posts from previous:   
Post new topic   Reply to topic    CCS Forum Index -> General CCS C Discussion All times are GMT - 6 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group