sumotoy / RA8875

A library for RAiO RA8875 display driver for Teensy3.x or LC/Arduino's/Energia/Spark
GNU General Public License v3.0
79 stars 55 forks source link

Should I be able to use this with the Adafruit RA8875 / 7" screen? #132

Closed ian-jeffery closed 6 years ago

ian-jeffery commented 6 years ago

Hi,

Should I be able to use this library with the adafruit RA8875 board and their 7 inch screen?

I cant get it to do anything other than a blank screen - although without changing the wiring, the Adafruit_RA8875 example works fine ?

Ian.

ian-jeffery commented 6 years ago

i realised i was not using the right value in tft.begin()

i didn't notice the sutble difference.

the examples are all

Code: [Select] tft.begin(RA8875_800x480);

where as for my adafruit board i needed this

Code: [Select] tft.begin(Adafruit_800x480);

i found the answer on the wiki page

https://github.com/sumotoy/RA8875/wiki/Connecting-the-Adafruit-RA8875-to-your-controller-(and-this-library)

all sorted now.