Home › Forums › Microcontrollers › PIC Microcontroller › Display Float on LCD – MPLAB XC8 › Reply To: Display Float on LCD – MPLAB XC8
December 22, 2014 at 10:19 pm
#10280

Keymaster
You can display floating point values on LCD in following two methods.
- By converting floating point value to string and display that sting using Lcd_Write_String()
- By separating each digits and display that digit using Lcd_Write_Char() after converting it to character
The second method is the best method but it will vary depending upon the length of values that to be displayed.