i got it all the same copy as your codes, however when the virtual terminal window opens and i try to type , nothing shows either in virtual terminal window or on the LCD screen. looks like the virtual terminal can not read from the keyboard. any idea how to fix this issue? thank you
Hello sir...I'm not getting the characters on the LCD screen..I checked the whole program and connections for 10 times😢 Please give me some suggestions
I had written tha same program as shown in video but " target not created with undefined identifier en" is coming again and again and if I removed en then same error is coming for rw
i got it all the same copy as your codes, however when the virtual terminal window opens and i try to type , nothing shows either in virtual terminal window or on the LCD screen. looks like the virtual terminal can not read from the keyboard. any idea how to fix this issue? thank you
Check your hardware connections , you have to connect RXD with TXD, TXD with RXD.
@@seshanandareddy6078 I did the same thing but not able to type
the same problem if you get the solution please post it
Can you share the assembly language code for the same
If i implement it on hardware which instruments as a replacement of virtual terminal
Hello Sir. Can I get the assembly language code for this . This is embedded C
Hello sir
Same code written but no output on lcd
Pl give suggestions
Bro if the output is displayed on lcd while typing on virtual terminal??
Hello sir...I'm not getting the characters on the LCD screen..I checked the whole program and connections for 10 times😢
Please give me some suggestions
Same problem for me too. Were you able to solve it?
All are now Proteus output but hardware not coming u take the output with explanation and prove to all...
Virtual terminal is not taking any input ; i checked my rxd and txd terminals as well
Can we write this program using arduino uno and how to simulate?
My terminal is not taking the inputs...
Check connections with RXD and TXD pins. Thank you
k tq
@@seshanandareddy6078 still it is not taking any inputs sir
why iam not getting that cmd prompt and whwnever i try to write i am not getting proper result
can you please provide source for GSM BASED WIRELESS SCROLLING LED DOT MATRIX DISPLAY
Ok, I will prepare ...i will sent you.TQ
I had written tha same program as shown in video but " target not created with undefined identifier en" is coming again and again and if I removed en then same error is coming for rw
#include
sbit rs=P2^0;
sbit rw=P2^1;
sbit en=P2^2;
void lcdcmd (unsigned char);
void lcddat (unsigned char);
void delay();
void main()
{
unsigned char x;
SCON=0X50; // initiliaze serial comm
TMOD=0X20; // timer 1 mode2
TH1=-3; // baudrate 9600
TR1=1; // start timer1
lcdcmd(0x38); // 5x7 mtrix
delay();
lcdcmd(0x01); // clear screen
delay();
lcdcmd(0x10); // display on cursor blinking
delay();
lcdcmd(0x0c); // shift cursor position right
delay();
lcdcmd(0x80);
delay();
while(1)
{
while(RI==0);
x=SBUF; // data recieved from external device pc keyboard
SBUF=x; // re transmit to terminal
while(TI==0); // wait transmission is over
TI=0; // clear ti for next txn
RI=0; // clear ri for next rxn
lcddat(x); // displayed on LCD recieved data
delay();
}
}
void lcdcmd(unsigned char val)
{
P1=val;
rs=0;
rw=0;
en=1;
delay();
en=0;
}
void lcddat(unsigned char dat)
{
P1=dat;
rs=1;
rw=0;
en=1;
delay();
en=0;
}
void delay()
{
unsigned int i,j;
for(i=0;i
Proteus software link please?
can i run this program on AT89s52?
Yes Usha shinde , you can ,,,It works. Thank you
Yes definitely
Sir not getting virtual terminal after clicking the play button , please say sir I have project
Just rename the file and check once
terminal is not taking inputs. i have connected RXD with TXD and TXD with RXD of controller
Rename the file it will work properly
While function missing
it worked greatly
Thank you Sai prasad Shukla. Keep learning
bro pls.send the source code
You liar 🤷🏻♂️
@@shashivadan6734
#include
sbit rs=P2^0;
sbit rw=P2^1;
sbit en=P2^2;
void lcdcmd (unsigned char);
void lcddat (unsigned char);
void delay();
void main()
{
unsigned char x;
SCON=0X50; // initiliaze serial comm
TMOD=0X20; // timer 1 mode2
TH1=-3; // baudrate 9600
TR1=1; // start timer1
lcdcmd(0x38); // 5x7 mtrix
delay();
lcdcmd(0x01); // clear screen
delay();
lcdcmd(0x10); // display on cursor blinking
delay();
lcdcmd(0x0c); // shift cursor position right
delay();
lcdcmd(0x80);
delay();
while(1)
{
while(RI==0);
x=SBUF; // data recieved from external device pc keyboard
SBUF=x; // re transmit to terminal
while(TI==0); // wait transmission is over
TI=0; // clear ti for next txn
RI=0; // clear ri for next rxn
lcddat(x); // displayed on LCD recieved data
delay();
}
}
void lcdcmd(unsigned char val)
{
P1=val;
rs=0;
rw=0;
en=1;
delay();
en=0;
}
void lcddat(unsigned char dat)
{
P1=dat;
rs=1;
rw=0;
en=1;
delay();
en=0;
}
void delay()
{
unsigned int i,j;
for(i=0;i
In my proteus, everything is working properly but I cannot type anything on my virtual terminal I don't know why. can you please explain to me
please provide the program.
contact 9000047070, Tq
watch video and copy the program which he wrote
do u have this code ??can u send me ??
will this coding work for transmitting msg from gsm modules and to show on lcd screen
No, you have deal with GSM module with AT Commands... Thank you Ahmed
seshananda reddy so do i have to write At command coding in this program for gsm
What commands id you use to transmitting the message from gsm module
@ahmed
Please Upload Your "hex" file