I have a litle problem, i want to make my project use lcd display 128x64 and IIC interface, but i can't print somethink on this display, i was trying <LiquidCrystal_I2C.h> library, but it didn't work.
How i can print somethink to this display use IIC interface?
Another "non-public" library. But it just happens to be configured in the "USE_PAR + USE_DIYMORE" state on GitHub. I have just tried it from GitHub myself.
So you should be able to install from ZIP. Run the examples. Report back.
When you have verified that the display is working via the I2C interface, I strongly advise you to remove the backpack. Involves a Dremel to cut through the soldered header strip.
Run the ST7920 display on SPI as God intended e.g. with cbm80amiga's ST7920_SPI library.
If you ever buy a KS0108 display the I2C backpack can be used (with fresh header strip). Makes KS0108 practical when you have very few GPIO pins.
Another "non-public" library. But it just happens to be configured in the "USE_PAR + USE_DIYMORE" state on GitHub. I have just tried it from GitHub myself.
So you should be able to install from ZIP. Run the examples. Report back.
When you have verified that the display is working via the I2C interface, I strongly advise you to remove the backpack. Involves a Dremel to cut through the soldered header strip.
Run the ST7920 display on SPI as God intended e.g. with cbm80amiga's ST7920_SPI library.
If you ever buy a KS0108 display the I2C backpack can be used (with fresh header strip). Makes KS0108 practical when you have very few GPIO pins.
Look at the examples. Similar to Adafruit_SSD1306 programs.
You just make regular Adafruit_GFX calls e.g. drawCircle(), drawLine(), ...
And regular Print calls e.g. setFont(), setCursor(), print(), println(), ...
Remember that stuff is written to the buffer.
You don't see the result until you call display()
david_prentice:
Look at the examples. Similar to Adafruit_SSD1306 programs.
You just make regular Adafruit_GFX calls e.g. drawCircle(), drawLine(), ...
And regular Print calls e.g. setFont(), setCursor(), print(), println(), ...
Remember that stuff is written to the buffer.
You don't see the result until you call display()
david_prentice:
Look at the examples. Similar to Adafruit_SSD1306 programs.
You just make regular Adafruit_GFX calls e.g. drawCircle(), drawLine(), ...
And regular Print calls e.g. setFont(), setCursor(), print(), println(), ...
Remember that stuff is written to the buffer.
You don't see the result until you call display()