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.

eeprom store data should be display on lcd...pls tel my mistake..?

Status
Not open for further replies.

jaya krishna

Member level 1
Joined
May 10, 2012
Messages
41
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,286
Location
India,coimbatore
Activity points
1,770
hi every one, i doing eeprom program, some data is write in eeprom and also same data is read and display on lcd...my code is run correctly but in schematic lcd show nothing... pls where i done my mistake in my code...
PHP:
#include <16F877a.H> 
#fuses XT,NOWDT,NOPROTECT,BROWNOUT,PUT,NOLVP 
#use delay (clock=4000000) 
//#use rs232(baud=9600, xmit=PIN_C6, rcv=PIN_C7, ERRORS) 
#use i2c(MASTER, FAST, SCL=PIN_C3, SDA=PIN_C4, FORCE_HW)


#define EEPROM_SDA  PIN_C4 
#define EEPROM_SCL  PIN_C3 
#include <24256.c> 


#define rs PIN_C0
#define rw PIN_C1
#define en PIN_C2

 void lcdcmd(unsigned char cmd);
 void lcddata(unsigned long int volt);
char const line1[]= {"Hello World"}; 

//================================= 
void main() 
{ 
    int8 i; 
    int buffer[17]; 
    set_tris_b(0x00);
    lcdcmd(0x38);
    lcdcmd(0x0E);
    lcdcmd(0x01);
    lcdcmd(0x06);
    lcdcmd(0x80);

//while(1)
// Write "Hello World" to external eeprom chip. 
for(i = 0; i < sizeof(line1); i++) 
    write_ext_eeprom(i, line1[i]); 
    

// Read characters from the external eeprom chip 
// and write them into a RAM buffer. 
for(i = 0; i < sizeof(line1); i++) 
    buffer[i] = read_ext_eeprom(i); 
    //bufferr = buffer[i];
 lcddata(buffer[i]);
// Display the message on the LCD. 
//printf(lcd_putc, buffer); 

while(1); 
}


void lcdcmd(unsigned char cmd)
              

{
  output_b(cmd);
  output_low(rs);
  output_low(rw);
  output_high(en);
  delay_ms(1);
  output_low(en);
  
}

void lcddata(unsigned long int volt)

{
  output_b(volt);
  output_high(rs);
  output_low(rw);
  output_high(en);
  delay_ms(1);
  output_low(en);
}


my Proteus schematic attached
 

Attachments

  • ext_eeprom.JPG
    ext_eeprom.JPG
    242.6 KB · Views: 62

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top