Hello. I’ve been trying to integrate a different LCD with the openMV H7 (I’m using a CFAG12864T3-NFH with a ST7656P driver) because the shield didn’t fit my application. I’ve been having a hard time booting it up, though, and I think it’s mostly due to the code (the pinouts seem to translate pretty well). I’ve changed the standard example LCD code to reflect the grayscale and B128X64 size, but beyond that I’m stuck. I figure there’s a problem with the incorporation of sensor.snapshot into this array size, but I can’t find how to change that. The LCD is linked here. Thanks!
Our driver output for the screen size should work fine… however, you’re going to likely have to add custom SPI writes to the display.
You can do this by creating a SPI bus object using PYB before doing lcd.init(). This bus object then will allow you to send custom SPI commands to setup the LCD controller before doing lcd.display().
Another forum users did this recently. It’s likely that you have to setup several registers before things work.