I've just created a 3D printable case for LILYGO T-Display S3 (no header pin version).
If your interested you can download it from here:
https://www.thingiverse.com/thing:5619955
I've just created a 3D printable case for LILYGO T-Display S3 (no header pin version).
If your interested you can download it from here:
https://www.thingiverse.com/thing:5619955
Here is my first project on the LILYGO T-Display S3
https://rlatour.com/cpumonitorjr/
I really like this board!
Here is a link to an open-source Nixie Tube Clock I developed for my LilyGo T-Display S3.
https://github.com/roblatour/NixieTubeClock
It also has code in it that allows you to use your computer / phone's browser to set up wifi access - i.e. the your network ssid and password do not have the be hardcoded in the sketch.
I wrote that part as an alternative to using ESP-Touch which seems to require that you use a 3rd party phone app - something I myself did not want to do as none (that I could find) were open source - I would rather just use my regular browser (in incognito mode).
Hope it will be of interest!
I thought I'd share with you my latest project using a LilyGo T-Display S3
It is an open source project to monitor Google AdSense views, clicks and revenue, and display them on an ESP32 TFT display.
For more information, please visit: [https://rlatour.com/adsensetracker/](link url)
Also, if you haven't seen it before, here is another open source project I put together which monitors the performance of a Windows computer and displays it wirelessly on the T-Display S3: [https://rlatour.com/cpumonitorjr/](link url)
If you know of anyone who might be interested in either of these projects, please pass them along!
as well, I designed a 3D printable adjustable case for it ...
The project is a YouTube subscriber counter, for more information please see:
https://rlatour.com/youtubesubscribercounter/
(also if you like the project and you don't mind please like the video and subscribe to see more)
@teastain2 Perfect, thank you Terry!
Also, thanks again for your feedback on the video. I've just updated it on Youtube (it will take up to 80 minutes for the High Quality versions to be available) but even what's there now is much better. Here's the link: https://youtu.be/YdbTDYZ2Ues
Rob
Here's a little trick ...
did you know that you can share the power between two T-Display-S3 devices by plugging one into your USB power cable, and then joining the second device to the first device via the devices' battery cables.
Here a couple pictures to show you what I mean:
I've been using this setup for several months with no issue!
@teastain2 said in T-Display S3 AMLOLED v2 - Display not working (but works on v1):
grams on the two repos are COMPLETELY different!
I hope I did not misunderstand your question!
OK thank you.
I would like to be able to support my program on both versions of the board, but I only have the v1 board.
What would need to be done to code written for the v1 board, to make it work on the v2 board?
For example, do I need to change the TFT_eSPI libraries? Anything else?
I wrote this program for the original T-Display S3 AMOLED:
webpage: https://rlatour.com/youtubesubscribercounter/
source: https://github.com/roblatour/youtubescribercounter?tab=readme-ov-file
However, now I have someone who has raised an issue saying the display does not work with the newer T-Display S3 AMLOLED v2.
Any reason why this would be?
In Arduino code, how do your turn on and off the LCD screen for the T-Display S3 AMOLED board?
Here's a little trick ...
did you know that you can share the power between two T-Display-S3 devices by plugging one into your USB power cable, and then joining the second device to the first device via the devices' battery cables.
Here a couple pictures to show you what I mean:
I've been using this setup for several months with no issue!
@teastain2 Perfect, thank you Terry!
Also, thanks again for your feedback on the video. I've just updated it on Youtube (it will take up to 80 minutes for the High Quality versions to be available) but even what's there now is much better. Here's the link: https://youtu.be/YdbTDYZ2Ues
Rob
Does anyone know the acceptable voltage levels that can be supplied into the battery connector jack (don't know what it is called - hope you know what I mean) on the T-Display S3 and the T-Display-S3 AMOLED?
as well, I designed a 3D printable adjustable case for it ...
The project is a YouTube subscriber counter, for more information please see:
https://rlatour.com/youtubesubscribercounter/
(also if you like the project and you don't mind please like the video and subscribe to see more)
I thought I'd share with you my latest project using a LilyGo T-Display S3
It is an open source project to monitor Google AdSense views, clicks and revenue, and display them on an ESP32 TFT display.
For more information, please visit: [https://rlatour.com/adsensetracker/](link url)
Also, if you haven't seen it before, here is another open source project I put together which monitors the performance of a Windows computer and displays it wirelessly on the T-Display S3: [https://rlatour.com/cpumonitorjr/](link url)
If you know of anyone who might be interested in either of these projects, please pass them along!
Thanks again for your help, and for confirming Arduino 2.1.1 was working fine with the LilyGo T-Display S3 on your system.
After spending virtually the whole day on this, I was able to pin-point the problem and work out a solution.
First, let me say I have also been using the ESP-IDF for some projects.
With that in mind, somewhere along the line I updated the CH430/431 driver to its most current version (3.8).
This turned out to have been at the root of the problem. Finding this post: https://github.com/espressif/esptool/issues/879 I tried reverting the driver to version 3.5, but that alone did not resolve the problem - although it was indeed the key part of the solution.
After downgrading the driver, the sketch would still not upload on either of the two LilyGo T-Display S3 boards which I was working with via the Arduino IDE 2.1.1.
However, I found that I could upload a very basic "hello world" like sketch to the LilyGo T-Display S3 using the ESP-IDF. Also, once I did this, I could then upload the sketch that I needed to the same board using the Arduino IDE.
In other words, it appears not only did the use of the current CH430/431 driver (3.8) prevent uploads to the LilyGo T-Display S3, it also somehow appears to have corrupted the flash in the board such that even with the right driver the Arduino IDE could not upload to it.
Using the ESP-IDF to upload to the board, seems to have reset things such that the Arduino IDE would again work fine with the 3.5 version of the CH430/431 driver.
I repeated the process with my second LilyGo T-Display S3 and got the exact same positive results.
Just posting this here in case it will be of use to others.
Thanks again to @teastain2 on this forum, and xamfa, radimkarnis. and mentesix on the Espressif forum for there help and posting toward this resolution.