Getting Started with the TFT_eSPI Library using the Arduino IDE

Поділитися
Вставка
  • Опубліковано 10 вер 2024

КОМЕНТАРІ • 20

  • @alysef21
    @alysef21 5 місяців тому +3

    Thanks, this really helped me configure the User_Setup.h file

  • @avejst
    @avejst 5 місяців тому +1

    Great walk-through. Just to be clear, the display itself must be a LCD display, hence the LED backlight.
    Looking forward to seeing the follow-up video.
    Thanks for sharing your experiences with all of us 🙂

    • @ForceTronics
      @ForceTronics  5 місяців тому

      Thanks for the comment. The display that I used in the demo was a TFT LCD display that had "LED backlight." In the video I just referred to it as a "TFT Display." Are you saying that if a display has LED backlighting it must be LCD? I was making the assumption (maybe incorrectly) that any display technology could have LED backlighting.

  • @Juss_Chillin
    @Juss_Chillin 3 місяці тому +1

    Truly a masterpiece of a tutorial! Thank you for that! :D

  • @ludokustermans
    @ludokustermans Місяць тому +1

    HI, interesting video. I am trying to make (or find) a user_setup file for ESP32-S3 Devkit wroom1 with an ILI9486 display, no tough,.The internet is quite confusing on this matter, so if you could advise if I should be able to find this, or/how to create my own user setup file. Is it correct that the numbers behind mosi, miso, sck are the devkit pin numbers, or GPIO numbers (it looks as they are the same on esp32 devkit, but not on esp32-S3 dvekit)

    • @ForceTronics
      @ForceTronics  Місяць тому +1

      The PIN numbers relate to esp32 gpio numbers. They do it that way so the code or library will work with any dev kit that has the particular esp32 you're working with like the S3

  • @AndrewPigram-wv7mq
    @AndrewPigram-wv7mq 5 місяців тому +1

    Fantastic video - brilliantly explained and perfect for someone like me with limited experience. Not only did I get my first ever ESP32 working with the TFT screen (I'd not used either before) but it really helped me gain a better base understanding in a number of areas - I learnt loads that will help with other projects too. Thanks!

    • @ForceTronics
      @ForceTronics  5 місяців тому

      I am so glad you found it useful!

  • @Bestcuriosity_1
    @Bestcuriosity_1 5 місяців тому +1

    Thankyou for amazing tutorial for colour display ,
    I want to open .h file of Arduino Library can you please explain how yo open and see all function definition codes

    • @ForceTronics
      @ForceTronics  5 місяців тому +1

      Glad you enjoyed the tutorial. There are a lot of ways to open and view a .h or .cpp file. They are in a standard ASCII format so you can open them with any text editor, such as Windows note pad (just right click and select open with and navigate to note pad). You can also use free code editors like Notepad++ (notepad-plus-plus.org/downloads/). You could also move the file into the same folder as an Arduino sketch and open that sketch and the .h file will show up in a separate tab in the sketch. But if you do that remember that Arduino will compile that file as part of your sketch. Hope this helps.

  • @jumbo999614
    @jumbo999614 2 місяці тому +1

    Do you have tutorial on that & operator and bit shifting?
    I don't understand the part where you define Dark_Red color.
    Please make another tutorial on this part.

    • @ForceTronics
      @ForceTronics  2 місяці тому +1

      The & operator performs a logic "and" on the binary bits. Shifting bits is just multiplying or dividing binary bits by 2, kind of like multiplying / dividing decimal numbers by 10. I will consider that for future tutorial. Thanks for comment

    • @jumbo999614
      @jumbo999614 2 місяці тому +1

      @@ForceTronics Thank you

  • @andang4283
    @andang4283 6 днів тому

    hello !!. I Can't use TFT_espi library for esp32C3 of Luatos, can you help me ?, TKS

    • @ForceTronics
      @ForceTronics  4 дні тому

      Go to GitHub where the library is managed and either branch the library and add support for the ESP 32 c3 or leave a comment asking for someone to add support.

  • @DBBahnospherix-BahnAtmospherix
    @DBBahnospherix-BahnAtmospherix Місяць тому +1

    7:41

  • @bongcheolshin
    @bongcheolshin 26 днів тому +1

    Nice Video!! I want use DMA function for fast playing images and fonts. How to handle TFT_eSPI ?

    • @ForceTronics
      @ForceTronics  21 день тому

      Thank you for the comment. Unfortunately I have not researched using DMA for faster image rendering so I can't answer your question. If you find any good resources please share in the comments