Forum Replies Created

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • in reply to: LCD and UART PIC Microcontroller #10219
    Ivan
    Participant

    Ignore my last reply. I solved.

    in reply to: LCD and UART PIC Microcontroller #10218
    Ivan
    Participant

    Now I’m testing something new.

    if(UART_Data_Ready()) 
    {
      switch(UART_Read())
      {
        case 0x0D: // Enter
          Lcd_Clear();
          break;
    
        case 0x61:
          Lcd_Write_Char('a');
          break;
    
        default:
          Lcd_Write_Char(UART_Read());
          break;
    }
    

    When I press ‘a’ the letter is added automatically, or when when i press ‘Enter’ the lcd clears itself. but when I want add another letter a need to press twice. Do you know why?

    Maybe I need do create a case for every letter.

    in reply to: LCD and UART PIC Microcontroller #10169
    Ivan
    Participant

    Working fine! Thank you 🙂

    in reply to: Custom Character LCD 4 Bit #10090
    Ivan
    Participant

    I felt sorry because I did another post about the same subject, I should search more. The code works fine.

    in reply to: Custom Character LCD 4 Bit #10084
    Ivan
    Participant

    I’m sorry, before I make this post I tried to search but it seems like I failed.

    Thank you 🙂

Viewing 5 posts - 1 through 5 (of 5 total)
>