Arduino UNO with 324x240 TTF color display - as a serial "inteligent" UART terminal (or monitor)
easy connection to a UART - Tx (I dont use the touchscreen)
it works with:
Example - serial display with Raspberry Pi (get IP function)
next examples of use:
https://www.instagram.com/p/_uHGhZR7VS/?tagged=serialdisplay
or #serialdisplay https://www.instagram.com/explore/tags/serialdisplay/
code for Arduino and Raspberry Pi is in directory: examples-of-use
I use "old type" of 2,4" TFT 320x240p LCD Modul Touch Panel Display
https://github.com/adafruit/TFTLCD-Library
https://github.com/adafruit/Adafruit-GFX-Library
there are icons and big numbers ( c0[] - c9[]) definitions at oe8x8max.h
icon.. for example invader1a[], invader1b[], invader2a[]...
Serial.begin(9600);
tft.reset();
uint16_t identifier = tft.readID();
if (test){ Serial.println(tft.readID()); }
type: 340 | 37672 | 37669 | 49344 ... library ADAFRUIT (2015) or SWIFT (2016) edition
"C" clear display
"Q" simple text string (ending *) "q" simple small text
"h num" horizontal line "v num" vertical line "p xNum, yNum" point "P xNum, yNum" 2x2 point
"c num" set color: 0) = BLACK;
- = WHITE;
- = YELLOW;
- = RED;
- = GREEN;
- = MAROO;
- = MAGENTA;
- = CYAN;
- = NAVY;
- = DIMGRAY; "W num" ...similar
EXAMPLE 1:
Cc2qtest*
smal yellow text "test" on clear display
Qline*c7h100
text "line" and cyan color horizontal line (y=100)
c3v50v100v150
three red vertical line x=50/100/150