Electronic notice board by using 8051 controller with keil and proteus

Поділитися
Вставка
  • Опубліковано 14 гру 2024

КОМЕНТАРІ • 49

  • @mehdikian4600
    @mehdikian4600 6 років тому +3

    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

    • @seshanandareddy6078
      @seshanandareddy6078 6 років тому

      Check your hardware connections , you have to connect RXD with TXD, TXD with RXD.

    • @Ranjithk2001
      @Ranjithk2001 3 роки тому

      @@seshanandareddy6078 I did the same thing but not able to type

    • @BhavanRB
      @BhavanRB 6 місяців тому

      the same problem if you get the solution please post it

  • @abhinavshukla6558
    @abhinavshukla6558 3 роки тому +2

    Can you share the assembly language code for the same

  • @shreyakhare3034
    @shreyakhare3034 5 років тому

    If i implement it on hardware which instruments as a replacement of virtual terminal

  • @govindiyer9469
    @govindiyer9469 3 роки тому +1

    Hello Sir. Can I get the assembly language code for this . This is embedded C

  • @ashwinimate1210
    @ashwinimate1210 Рік тому +1

    Hello sir
    Same code written but no output on lcd
    Pl give suggestions

    • @2kkidsajay129
      @2kkidsajay129 7 місяців тому

      Bro if the output is displayed on lcd while typing on virtual terminal??

  • @ABCTalk19
    @ABCTalk19 Рік тому

    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

    • @srslybro3145
      @srslybro3145 Рік тому

      Same problem for me too. Were you able to solve it?

  • @karthikdurai8209
    @karthikdurai8209 5 років тому

    All are now Proteus output but hardware not coming u take the output with explanation and prove to all...

  • @krishnashah4243
    @krishnashah4243 4 роки тому

    Virtual terminal is not taking any input ; i checked my rxd and txd terminals as well

  • @adityarajput1240
    @adityarajput1240 4 роки тому

    Can we write this program using arduino uno and how to simulate?

  • @gollagaddaroopali983
    @gollagaddaroopali983 6 років тому +1

    My terminal is not taking the inputs...

  • @nagarjunupadayayula8513
    @nagarjunupadayayula8513 3 роки тому

    why iam not getting that cmd prompt and whwnever i try to write i am not getting proper result

  • @Lokeshkadali5869
    @Lokeshkadali5869 6 років тому

    can you please provide source for GSM BASED WIRELESS SCROLLING LED DOT MATRIX DISPLAY

  • @soniathakur4316
    @soniathakur4316 4 роки тому

    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

    • @nagarjunupadayayula8513
      @nagarjunupadayayula8513 3 роки тому

      #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

  • @yallavulasudhakarreddy4104
    @yallavulasudhakarreddy4104 3 роки тому

    Proteus software link please?

  • @ushashinde2919
    @ushashinde2919 6 років тому

    can i run this program on AT89s52?

  • @Ranjithk2001
    @Ranjithk2001 3 роки тому

    Sir not getting virtual terminal after clicking the play button , please say sir I have project

  • @babroochavan2465
    @babroochavan2465 6 років тому

    terminal is not taking inputs. i have connected RXD with TXD and TXD with RXD of controller

    • @promodeon5123
      @promodeon5123 3 роки тому

      Rename the file it will work properly

  • @gopalakrishnan-ps7ef
    @gopalakrishnan-ps7ef 7 місяців тому

    While function missing

  • @SaiPrasadShukla
    @SaiPrasadShukla 6 років тому

    it worked greatly

    • @seshanandareddy6078
      @seshanandareddy6078 6 років тому

      Thank you Sai prasad Shukla. Keep learning

    • @shashivadan6734
      @shashivadan6734 5 років тому

      bro pls.send the source code

    • @promodeon5123
      @promodeon5123 3 роки тому

      You liar 🤷🏻‍♂️

    • @nagarjunupadayayula8513
      @nagarjunupadayayula8513 3 роки тому

      @@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

    • @BhavanRB
      @BhavanRB 6 місяців тому

      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

  • @shubhamtelang1180
    @shubhamtelang1180 6 років тому

    please provide the program.

  • @ahmedabbasmadaniya530
    @ahmedabbasmadaniya530 6 років тому

    will this coding work for transmitting msg from gsm modules and to show on lcd screen

    • @seshanandareddy6078
      @seshanandareddy6078 6 років тому

      No, you have deal with GSM module with AT Commands... Thank you Ahmed

    • @ahmedabbasmadaniya530
      @ahmedabbasmadaniya530 6 років тому

      seshananda reddy so do i have to write At command coding in this program for gsm

    • @soumyaakula4279
      @soumyaakula4279 5 років тому

      What commands id you use to transmitting the message from gsm module

    • @soumyaakula4279
      @soumyaakula4279 5 років тому

      @ahmed

  • @knitesh687
    @knitesh687 5 років тому

    Please Upload Your "hex" file