lexus2k / lcdgfx

Driver for LCD displays running on Arduino/Avr/ESP32/Linux (including Rasperry) platforms
MIT License
377 stars 52 forks source link

Missing documentation #29

Closed myval closed 3 years ago

myval commented 3 years ago

Not bug as such in the library but the link to the documentation is not working.

lexus2k commented 3 years ago

Could you please describe, which link doesn't work. https://codedocs.xyz/lexus2k/lcdgfx

myval commented 3 years ago

yeah sorry should have specify better. The link in the documentation section here:

Documentation generated by doxygen tool can be found at lcdgfx github.io site. this link: http://lexus2k.github.io/lcdgfx

myval commented 3 years ago

Yeah the one you sent is fine, thanks. The link in document section might need to be updated.

lexus2k commented 3 years ago

Thank you, now fixed. Could you check please ?

myval commented 3 years ago

Works first class now, thanks. while I got you on line can you provide an example for printFixedPgm()? I have been struggling with it a bit. And second question what is the function to set cursor for lets say print()?

thanks

lexus2k commented 3 years ago

while I got you on line can you provide an example for printFixedPgm()? Which platform? AVR?

const char * PROGMEM text = "Text from flash memory"
...
display.printFixedPgm(0,0, text);

And second question what is the function to set cursor for lets say print()?

display.setTextCursor(). Does it work for you?