-->
Page 1 of 3

TFT on ESP8266 ???

PostPosted: Tue Aug 23, 2016 3:06 am
by Charly013
Hi, has anyone connect sucesfull a TFT to a ESP8266 and can post me the Basic code ?
( i searce now 2 Day for the fail on my DIY modul.... and now i am crazy :oops: )
mny tnx!

Re: TFT on ESP8266 ???

PostPosted: Wed Aug 24, 2016 9:25 pm
by Vargha
Hi,
I have a tutorial for NOKIA 5110:
https://www.youtube.com/watch?v=O6t2SoeV2b4
I don't know what TFT you are using, but you may like to try Adafruit library and code example for TFT LCDs.

Re: TFT on ESP8266 ???

PostPosted: Thu Aug 25, 2016 5:39 pm
by joeygbsn
Just got one of these the other day and have gotten it working. Attached is a diagram I made for hooking it up to a nodemcu board. The screen is not the same in the diagram, and has no touch, but the pinout is the same. And here is some test code pieced together from the docs:
Code: Select allmemclear
tft.setup(16, 4, 3)
button Demo, [demo]

[demo]
tft.text.color(tft.rgb(255,255,0))
tft.text.cursor(0,50)
tft.text.size(2)
tft.print("This is ")
tft.println("print ")
tft.println("second line")
tft.println("third line")
delay 200
tft.fill(0)
wait

Re: TFT on ESP8266 ???

PostPosted: Fri Aug 26, 2016 4:40 am
by Charly013
Hello & tnx for Replay / Example,

i try your Program (after change Setup for my connection tft.setup(18, 15, 1) )
but its not work on my ESP03 ;(
i dont know why, i will connect the Display tomorrow on my
nodemcu and i will report again

best regards
Charly