How to program LCD 4x40?

General discussion on mikroC.
Post Reply
Author
Message
CK1980
Posts: 3
Joined: 10 Feb 2012 16:30

How to program LCD 4x40?

#1 Post by CK1980 » 19 Feb 2012 12:39

I use ISIS and mikroC from youtube

http://www.youtube.com/watch?v=aP4FL9yf ... re=related

LCD 2x16 works. I want use LCD 4x40. However, it not show what i want.
Image


My code:

Code: Select all

sbit LCD_RS at RB1_bit;
sbit LCD_EN at RB2_bit;
sbit LCD_EN2 at RB3_bit;
sbit LCD_D4 at RB4_bit;
sbit LCD_D5 at RB5_bit;
sbit LCD_D6 at RB6_bit;
sbit LCD_D7 at RB7_bit;

sbit LCD_RS_Direction at TRISB1_bit;
sbit LCD_EN_Direction at TRISB2_bit;
sbit LCD_EN2_Direction at TRISB3_bit;
sbit LCD_D4_Direction at TRISB4_bit;
sbit LCD_D5_Direction at TRISB5_bit;
sbit LCD_D6_Direction at TRISB6_bit;
sbit LCD_D7_Direction at TRISB7_bit;

void main()
{
Lcd_Init();
 Lcd_Cmd(_LCD_CLEAR);
 Lcd_Cmd(_LCD_CURSOR_OFF);
 Lcd_Out(1, 1, "Hello");
 Lcd_Out(2, 1, "World");
 Lcd_Out(3, 1, "mikroC PRO for");
 Lcd_Out(4, 1, "v5.4.0");
}

User avatar
janko.kaljevic
Posts: 3565
Joined: 16 Jun 2011 13:48

Re: How to program LCD 4x40?

#2 Post by janko.kaljevic » 20 Feb 2012 16:21

Hello,

Please try to set ADCON1 and CMCON registers according to the purpose of those pins.
This could cause this strange behavior.

Best regards.

Post Reply

Return to “mikroC General”