Menu
Winkelwagen

Beoordelingen

Geverifieerd

Schrijver: Leo Timmer

TFT Plaats weerstand tussen LED en 3.3V

  • Toegevoegd op: 05/03/2025
  • Gemiddelde beoordeling:

Werkte prima met esp32 van Tinytronics SKU:
003611 , met zowel eSPI als met GFX Wat me opviel is dat als je LED rechtstreeks aan 3V hangt, het niet wilde werken. Scherm bleef wit. Nadat ik een weerstand van 470 ohm tussen LED en 3.3V aanbracht, werkte het prima. Mooie kleuren.

Geverifieerd

Schrijver: Rink

Works fine on Raspberry Pi 3B

  • Toegevoegd op: 17/02/2023
  • Gemiddelde beoordeling:

It works nicely on a Raspberry Pi 3B. Connect lines as follows:

Raspberry Pi Connector Display connector

1 (3V3) 8 (LED)
18 (GPIO 24) 4 (RESET)
19 (SPI0 MOSI) 6 (MOSI)
21 (SPI0 MISO) 9 (MISO)
22 (GPIO 25) 5 (DC/RS)
23 (SPI0 CLK) 7 (SCK)
24 (SPI0 CS) 3 (CS)
2 (GND) 2 (GND)
17 (3V3) -> 1 (VCC)

Build fbcp-ili9341:

git clone https://github.com/juj/fbcp-ili9341.git
cd fbcp-ili9341
mkdir build
cd build
cmake -DILI9341=ON -DSPI_BUS_CLOCK_DIVISOR=16 -DGPIO_TFT_DATA_CONTROL=25 -DGPIO_TFT_RESET_PIN=24 ..

And run:

sudo ./fbcp-ili9341

And it should work. Good luck!

Geverifieerd

Schrijver: Hans

  • Toegevoegd op: 27/02/2020
  • Gemiddelde beoordeling:

Works great! I got it working with Adafruit Huzzah32 (ESP32) and use the Adafruit_ILI9341 library with the graphicstest example. I changed it by adding these defines:

#define TFT_MOSI 18
#define TFT_MISO 19
#define TFT_RST 4
#define TFT_CLK 5
#define TFT_DC 33
#define TFT_CS 15

And use the following constructor to create the TFT object:

Adafruit_ILI9341 tft = Adafruit_ILI9341(TFT_CS, TFT_DC, TFT_MOSI, TFT_CLK, TFT_RST, TFT_MISO);

And wired the ILI9341 TFT to the Huzzah32:

TFT HUZZAH32
================
MISO 19
LED 3V
SCK 5
MOSI 18
DC/RS 33
RESET 4
CS 15
GND GND
VCC USB

1 - 3 van 3 (1 pagina's)
1
false
true
true
Verwijderen
Aanpassen
tr