Lyrics Visualizer
I made this lyrics sync program distinctly from the audio by working with the external audio timing and setting the lyrics up line after line, this lyrics is synced during the editing process. programmed on Arduino mega 2560, displayed on 128 * 160 rgb tft, this program is created for people that love to read lyrics while listening to songs.
6 Replies
Nice project, it seems like an cheap device to an expensive product which is really nice. And, are your TFT LCD pins soldered? Because I have an really similar tft that I can’t get to work, and what language did you use)
*?
Will you share the code?
The code is fine, I already talked in the esp help fourm, they think the problem is non soldered pins .
And I thought it was a finished product 😉
Cool, where can I find the code?
from machine import Pin, SPI
import time
import st7735
spi = SPI(2, baudrate=20000000, polarity=0, phase=0,
sck=Pin(18), mosi=Pin(23))
tft = st7735.ST7735(spi, 128, 160, cs=Pin(5), dc=Pin(2), rst=Pin(4))
tft.init()
tft.fill(st7735.BLACK)
tft.text("Test 1", 10, 10, st7735.YELLOW)
tft.text("Test 2", 10, 30, st7735.CYAN)
This is what we think the problem is cuz me pins ain’t soldered
