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

Custom LCD driver

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



Joined: 07 Mar 2009
Posts: 14

View user's profile Send private message

Custom LCD driver
PostPosted: Mon May 17, 2010 11:44 pm     Reply with quote

Hello, hi all!

I try to used customize pin for 16x2 lcd but fail to use the different pin configuration.
Anyone can help please!

my code as follow:

Code:

/#define LCD_ENABLE_PIN PIN_B5
#define LCD_RS_PIN        PIN_B6
#define LCD_RW_PIN       PIN_B7

//#define LCD_DATA4         PIN_D0
//#define LCD_DATA5         PIN_D1
//#define LCD_DATA6         PIN_D2
//#define LCD_DATA7         PIN_D3

#define LCD_DATA_PORT D0_D1_D2_D3 // produce by wizard
#include <lcd.c>

void main()
{
   lcd_init();  // Always call this first.
   
   while(1)
   {
      lcd_gotoxy(1,1);
      printf(lcd_putc,"Hello you");
      lcd_gotoxy(1,2);
      printf(lcd_putc,"PIC16F877A");
   }
}
PCM programmer



Joined: 06 Sep 2003
Posts: 21708

View user's profile Send private message

PostPosted: Tue May 18, 2010 1:22 pm     Reply with quote

Start by using the Flex lcd driver in the Code Library forum:
http://www.ccsinfo.com/forum/viewtopic.php?t=24661
It's easy to use, and it works for 99% of all people.

Once you have it working, then you can try to configure the CCS
driver with the Wizard, etc., if you still want to use it.
takumi



Joined: 07 Mar 2009
Posts: 14

View user's profile Send private message

PostPosted: Tue May 18, 2010 8:11 pm     Reply with quote

tq it work
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