Menu
Winkelwagen

2.4 inch TFT Display Shield - 240*320 pixels - Met touchscreen

2.4 inch TFT Display Shield - 240*320 pixels - Met touchscreen
Op aanvraag
2.4 inch TFT Display Shield - 240*320 pixels - Met touchscreen
  • Beschikbaarheid: Op aanvraag
  • SKU: 001373
€10,00
Excl. BTW: €8,26
10 of meer €9,00
20 of meer €8,50
50 of meer €8,00
100 of meer €7,50

Een 2.4 inch TFT display met 240*320 (RGB) pixels die men rechtstreeks op een Arduino Mega of Uno kan zetten.
De benodigde library kan men hier vinden: Github prenticedavid/MCUFRIEND_kbv (aanpassingen voor werking hieronder beschreven)

Handleiding voor TFT Shield met ILI9320 driver:

uint8_t YP = A1; // must be an analog pin, use "An" notation!
uint8_t XM = A2; // must be an analog pin, use "An" notation!
uint8_t YM = 7; // can be a digital pin
uint8_t XP = 6; // can be a digital pin

Naar:

uint8_t YP = A2; // must be an analog pin, use "An" notation!
uint8_t XM = A1; // must be an analog pin, use "An" notation!
uint8_t YM = 6; // can be a digital pin
uint8_t XP = 7; // can be a digital pin
  • Pas het volgende stuk code aan op regel 134:
identifier = tft.readID();

Naar:

identifier = tft.readID();
identifier = 0x9320;
  • Pas het volgende stuk code aan op regel 149 t/m 152:
} else if (identifier == 0x9320) {
name = "ILI9320";
YP = A3; XM = A2; YM = 9; XP = 8;
TS_LEFT = 902; TS_RT = 137; TS_TOP = 941; TS_BOT = 134;

Naar:

} else if (identifier == 0x9320) {
name = "ILI9320";
YP = A1; XM = A2; YM = 7; XP = 6;
TS_LEFT = 902; TS_RT = 137; TS_TOP = 941; TS_BOT = 134;
  • Pas het volgende stuk code aan op regel 244 t/m 245:
xpos = map(tp.x, TS_LEFT, TS_RT, 0, tft.width());
ypos = map(tp.y, TS_TOP, TS_BOT, 0, tft.height());

Naar:

xpos = map(tp.x, TS_LEFT, TS_RT, 0, tft.width());
ypos = map(tp.y, TS_TOP, TS_BOT, 0, tft.height());
xpos = tft.width() - xpos;
ypos = tft.height() - ypos;
  • Upload deze code naar je Arduino om je TFT shield te testen!

Handleiding voor TFT Shield met ILI9341 driver:

const int XP=6,XM=A2,YP=A1,YM=7; //ID=0x9341
const int TS_LEFT=907,TS_RT=136,TS_TOP=942,TS_BOT=139;

Naar:

const int XP=8,XM=A2,YP=A3,YM=9; //ID=0x9341
const int TS_LEFT=907,TS_RT=136,TS_TOP=900,TS_BOT=60;
  • Voeg het volgende stuk code toe op regel 155(achter "}" van "switch (Orientation) {" gedeelte):
xpos = tft.width() - xpos;
ypos = tft.height() - ypos;
  • Upload deze code naar je Arduino om je TFT shield te testen!
Je moet inloggen of registreren om een beoordeling te plaatsen.

Beoordelingen over 2.4 inch TFT Display Shield - 240*320 pixels - Met touchscreen

Dit product heeft in totaal 1 beoordeling(en).

Specificaties

Algemeen
Merk Merkloos
Features Display
Touchscreen
SD-kaart adapter
Algemene fysieke kenmerken
Hoofdkleur Rood
Gewicht [g] 31
Afmeting X [mm] 73
Afmeting Y [mm] 53
Montagemogelijkheden Pinheaders
Vormfactor Module (algemeen)
Uno layout/shield
Experimenteerprintplaat vriendelijk Nee
Algemene electrische eigenschappen
Minimale voedingsspanning [V DC] 5
Maximale voedingsspanning [V DC] 5
Minimale IO-pin ingangsspanning [V] 5
Maximale IO-pin ingangsspanning [V] 5
IO-pin uitgangsspanning [V] 5
Communicatie
Hardware interface(s) Analoog
Parallelle bus (DPI)
Ondersteund SD-kaart formaat Micro SD
Display
Type TFT
Driver ILI9341
(of ILI9320)
Schermdiagonaal [inch] 2.4
Aantal pixels lange kant 320
Aantal pixels korte kant 240
Schermvorm Rechthoekig
Pixelkleuren RGB
Touchscreen
Touch type Resistief
Multi-touch ondersteuning Nee
Connectoren
Voedingsconnector(en) Pinheader male (2.54mm)
IO-connector(en) Pinheader male (2.54mm)
Inhoud verpakking
Inhoud verpakking 1x Display module
1x Stylus

Heb je een vraag of probleem omtrent een product, neem dan contact met ons op via een van de onderstaande knoppen.

1
false
true
true
Verwijderen
Aanpassen
tr