Hello all,
Yesterday I was able to spend some time working on placing text on the LCD to get an idea of where the icons would be and where the "I Need" button would be.
Here is the code I am using for this:
tft.textSetCursor(50, 200);
tft.textTransparent(RA8875_WHITE);
tft.textEnlarge(2);
tft.textWrite("I Need");
tft.textSetCursor(600, 50);
tft.textTransparent(RA8875_WHITE);
tft.textEnlarge(2);
tft.textWrite("A Drink");
tft.textSetCursor(600, 150);
tft.textTransparent(RA8875_WHITE);
tft.textEnlarge(2);
tft.textWrite("An iPad");
tft.textSetCursor(600, 250);
tft.textTransparent(RA8875_WHITE);
tft.textEnlarge(2);
tft.textWrite("A Break");
tft.textSetCursor(600, 350);
tft.textTransparent(RA8875_WHITE);
tft.textEnlarge(2);
tft.textWrite("Food");
Tomorrow I will be getting the audio module to incorporate it with the display and then get the code to sync tapping the image on the screen and it will speak out the image touched.
The audio module will have an SD card slot on it to access the audio files that I have recorded.
More updates to come!