Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Displaying on SC204A using PIC16F877A and mikro C as Compiler

Status
Not open for further replies.

shadow15

Newbie level 3
Joined
May 20, 2013
Messages
3
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,303
Hello, I want to display a simple text on my SC204A LCD using my PIC16F877A. The compiler I am using is mikro C PRO version 6.0.0. There are no errors when I build my code but I still have no output on my LCD. Here is my code

Code:
// LCD module connections
sbit LCD_RS at RB2_bit;
sbit LCD_EN 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 TRISB2_bit;
sbit LCD_EN_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;
// End LCD module connections

char txt1[] = "This is a Test";
char txt2[] = "Thank you";

void main()
{


PORTB = 0x00;
TRISB = 0x00; // set direction to be output

Lcd_Init(); // Initialize LCD
Lcd_Cmd(_LCD_CLEAR); // Clear display
Lcd_Cmd(_LCD_CURSOR_OFF); // Cursor off
Lcd_Cmd(_LCD_TURN_ON);

Lcd_Out(1,1,txt1); // Write text in first display
Delay_ms(500);
Lcd_Cmd(_LCD_CLEAR); // Clear display
Lcd_Out(1,1,txt2); // Write text in next display
Delay_ms(500);
}

Is there a problem with my code? I can't figure out the problem. Kindly help me :) Thanks!
 

I tried what you said tpetar. It worked. However, after displaying the text, garbage began displaying on the lcd. Do you know what causes this and how can I remove that?
lcd display.jpg
Here is my circuit by the way.
Is there something wrong with the circuit? Thanks!
 

If D0-D7 are connected to the ground, how can I input the message into the LCD?
 

I tried what you said tpetar. It worked. However, after displaying the text, garbage began displaying on the lcd. Do you know what causes this and how can I remove that?
View attachment 91541
Here is my circuit by the way.
Is there something wrong with the circuit? Thanks!

I tryed with PIC18F45K22 and works nice. Check all connection. Try other LCD.

After programming turn off complete device with LCD, then turn on.
 
Last edited:

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top