I have tried again with bdfconv.exe. I have checked the .bdf file I created and it has 11 glyphs (I only need numbers 1-10 and a degree symbol which I replaced glyph 47 with)
Hi all. Ive connected LCD RG12864C-BIW-V to my Arduino DUE via voltage coverters 74LVX3245MTC and i have problem with software. Im sure that wrote right GPIO pins in class contructor from this library (using DB0..DB7, CS1,CS2,RS,RW,DI,E), but theres no LCD reaction. (I did everything what was wrote here: thelloworld · olikraus/u8glib Wiki · GitHub). I've used constructor U8GLIB_KS0108_128. On my board theres 1 way communication so im not checking LCD's busy flag, wanted deal with it using delays, but i can't find any delays in this library. Any ideas?
Hallo und willkommen.
Dies ist ein Englischsprachiges Thema.
You are telling the library to put a character number, followed by degrees Celsius on the screen.
The character is number 196 in that font (click !).
You should tell it to put your value to the screen instead of a character.
@Reinhard: You need to enter the correct hex code of the glyph into the string in the form " \xXYC" where XY should be the correct hex code of the symbol.
The problem is caused by the mismatch of the string encoding. Arduino IDE supports UTF-8 which is not supported by u8glib. The new version of u8glib (u8g2) supports UTF-8. So this problem will not appear any more with u8g2.
I am wondering if you could help me out with a problem. I have ARM STM32f4Discovery (STM32f407 if we are exact) I followed some guide and example code from the internet and while he had a working lcd mine is glitched. The square that you can see on the bottom right is something that I wanted to draw, everything else I didn't.
Note: The DFRobot ST7920 should be supported by the U8GLIB_ST7920_128X64 device,
but it has been reported that this is not working. Maybe someone from the Arduino
community is able to check this (I do not own this display).
Oliver
I have a 128x64 graphic ST7920 display clone that looks, walks, quacks and feels like a Robot. This one works with your updated library (> 1,000,000 x thanks) displaying temperature (DS18B20) and humidity (DHT11) see sketch, see picture of the setup
hello Arduino friends,
I have been looking for how to display Tibetan character on tft 2.4` mcufriend lcd for a week now... I am not able to find any related articles to display Tibetan character at all. can anyone help me how to make the display recognize Tibetan character Unicode encoding start with F00, and can display my language on any display
Please, I need description of internal u8glib font format.
I need to get one char from regular font (u8g_font_helvR08) to reduced one, like u8g_font_helvR08r. But I do not know the u8glib font structure.
Thank you.
You can define the characters and/or remove the chars from the font source. Then use the modified font source file (BDF) and reconstruct the u8g font. Use the BDF sourcefile of the font and the bdf converter. Details are described here: