Hi, I successfully ported a CircuitPython script written for use with a standard Hitachi HD44780 to use with a SparkFun LCD-16398 20x4 RGB backlight Qwiic display. My script decodes and displays GPS datagram messages broadcasted by Microsoft Flightsimulator, via the app FSUIPC7 GPSout2 function (as a kinda middle-man).
I use the character in ROM at address 0xDF to indicate the ‘degrees’ character in Latitude and Longitude position values.
However with the SparkFun SerLCD the character at ROM position 0xC5 is displayed instead. (I use the addresses shown in page 17 of the datasheet of a standard Hitachi HD44780 LCD)
Question: what do I have to change to get the correct character displayed ?
The part of the script that writes the latitude is:
s = “{: >2s}\xDF{:0>2s}'{:0>2s}.{:0>2s}"”.format(lat_v[:2], lat_v[2:4], lat_v[5:7],lat_v[7:])
lcd.write(s)
See the image at: https://imgur.com/zeZPZJ4
Second question: does SparkFun have somewhere in its documentation a datasheet of the LCD used in the LCD-16398 so I can see the programation of the Character ROM ?