where to find ILI9341_t3 library reference?

Status
Not open for further replies.

Al Dodson

Member
This may be a real noob question. You gotta start somewhere. I started out as child.

Anyways, I downloaded the ILI9341_t3-master library. I'm using it with the TFT touchscreen display. Haven't used the touchscreen section, yet. Just trying to get the display working. It works! I can run the 'pictureEmbed' example. This example uses commands (maybe they're called 'functions') like tft.begin(), and tft.writeRect( p1, p2, p3, p4, p5). Here's an example of the kind of commands I'm talking about:

void setup() {
tft.begin();
tft.setRotation(3);
tft.fillScreen(ILI9341_BLACK);
tft.writeRect(32, 33, 256, 174, (uint16_t*)picture);
}

So, the question is, where do I learn about these commands and how to use them? Is there a reference somewhere? I poked around on the web for a while and couldn't find anything.
Thanks in advance for any help on this.
 
Status
Not open for further replies.
Back
Top