Programming & LCD

Question

I want to add degree Celsius symbol for my project. I am using LCD 16×2 please help.

Answers ( 2 )

  1. Use code
    lcd.print((char)223); //used to display degree symbol on display
    lcd.write(0xdf); //another way to display degree symbol
    lcd.print(“C”); // C character

    0
    2023-11-07T16:14:02+05:30

    You can try the attached code and see

Leave an answer

Sorry, you do not have permission to answer to this question .