Comments on: LCD interfacing with PIC Microcontroller – MikroC https://electrosome.com/lcd-pic-interfacing/ You Inspire.....We Create..... Sun, 12 Apr 2020 04:58:29 +0000 hourly 1 https://wordpress.org/?v=6.1.1 By: Ligo George https://electrosome.com/lcd-pic-interfacing/#comments/9602 Sun, 12 Apr 2020 04:58:29 +0000 https://electrosome.com/?p=1554#comment-9602 In reply to Unkn Own.

Can you cross check whether the oscillator frequency given in mikroc project settings and proteus pic settings are correct ?

]]>
By: Unkn Own https://electrosome.com/lcd-pic-interfacing/#comments/9600 Sat, 11 Apr 2020 20:52:35 +0000 https://electrosome.com/?p=1554#comment-9600 Hi. I’m using PIC16F628A and it works just fine in real life, but I got an error on Proteus simulation: “Controller received data whilst busy”.

Do you know a way to solve that issue?

]]>
By: Malith Shamal Balasooriya https://electrosome.com/lcd-pic-interfacing/#comments/7114 Fri, 22 Jun 2018 03:59:52 +0000 https://electrosome.com/?p=1554#comment-7114 Nicely working without any error. mikroC code is correct

]]>
By: dman https://electrosome.com/lcd-pic-interfacing/#comments/6846 Fri, 11 Aug 2017 11:43:00 +0000 https://electrosome.com/?p=1554#comment-6846 i tried this but not working pls i dont know why

// LCD module connections
sbit LCD_RS at RE0_bit;
sbit LCD_EN at RE2_bit;
sbit LCD_D4 at RD4_bit;
sbit LCD_D5 at RD5_bit;
sbit LCD_D6 at RD6_bit;
sbit LCD_D7 at RD7_bit;

sbit LCD_RS_Direction at TRISE0_bit;
sbit LCD_EN_Direction at TRISE2_bit;
sbit LCD_D4_Direction at TRISD4_bit;
sbit LCD_D5_Direction at TRISD5_bit;
sbit LCD_D6_Direction at TRISD6_bit;
sbit LCD_D7_Direction at TRISD7_bit;
// End LCD module connections

void main()
{
Lcd_Init(); // Initialize LCD
Lcd_Cmd(_LCD_CLEAR); // Clear display
Lcd_Cmd(_LCD_CURSOR_OFF); // Cursor off
Lcd_Out(1,1,”Hello World”); // Write text’Hello World’ in first row
}

]]>
By: Siala Marwa https://electrosome.com/lcd-pic-interfacing/#comments/6711 Mon, 20 Mar 2017 12:20:00 +0000 https://electrosome.com/?p=1554#comment-6711 hello, how can i use this code for PIC 16F877 ?

]]>
By: UsamaTariq https://electrosome.com/lcd-pic-interfacing/#comments/6690 Wed, 08 Mar 2017 12:42:00 +0000 https://electrosome.com/?p=1554#comment-6690 i am having a problem.,,a have a aanlog to digitlal converter in which same pattern is followed but display is not working …
sbit LCD_RS at RC2_bit;
sbit LCD_EN at RC3_bit;
sbit LCD_D4 at RC4_bit;
sbit LCD_D5 at RC5_bit;
sbit LCD_D6 at RC6_bit;
sbit LCD_D7 at RC7_bit;
sbit LCD_RS_Direction at TRISC2_bit;
sbit LCD_EN_Direction at TRISC3_bit;
sbit LCD_D4_Direction at TRISC4_bit;
sbit LCD_D5_Direction at TRISC5_bit;
sbit LCD_D6_Direction at TRISC6_bit;
sbit LCD_D7_Direction at TRISC7_bit;
int hamza();
void main()
{
unsigned int x1,x2,x3;
unsigned int z;
unsigned int y;
char b[10];

TRISA0_bit=1;
trisb=0;
trisc=0;
trisd=0;

ADCON1=0b11000100;
ADCON0=0b01000001;
loop:
ADCON0=0b01000001;
x1=hamza();
latb=x1;
ADCON0=0b01001001;
x2=hamza();
latb=x2; //pwehle lat c tha
ADCON0=0b01011001;
x3=hamza();
latd=x3;
Lcd_Init();
Lcd_Cmd(_LCD_CLEAR);
Lcd_Cmd(_LCD_CURSOR_OFF);
FloatToStr(x2,b);
Lcd_Out(1,3,b);
goto loop;
`

}
int hamza()
{
unsigned int jj;
GO_DONE_BIT=1;
while(GO_DONE_BIT==1);
jj=ADRESH;
jj=(jj<<8)|(ADRESL);
return jj;

]]>
By: jettie conn https://electrosome.com/lcd-pic-interfacing/#comments/6177 Wed, 29 Jun 2016 11:43:00 +0000 https://electrosome.com/?p=1554#comment-6177 my business was looking for a form a few weeks ago and was informed of an online service that has a searchable database . If people have been needing it too , here’s a https://goo.gl/GSryxq.

]]>
By: Iqbal Nur Fadillah https://electrosome.com/lcd-pic-interfacing/#comments/5960 Fri, 25 Mar 2016 10:07:00 +0000 https://electrosome.com/?p=1554#comment-5960 this website is very very useful..thanks for admin…i hope that you’ll get the knowledge too

]]>
By: Ligo George https://electrosome.com/lcd-pic-interfacing/#comments/5567 Sat, 21 Nov 2015 08:15:00 +0000 https://electrosome.com/?p=1554#comment-5567 In reply to Tomiwav.

Tutorials are open, you don’t need to login for that.

]]>
By: Tomiwav https://electrosome.com/lcd-pic-interfacing/#comments/5477 Mon, 19 Oct 2015 13:29:00 +0000 https://electrosome.com/?p=1554#comment-5477 how do i download tutorials to my accounts

]]>