Edzelf / ESP32-Radio

Internet radio based on ESP32, VS1053 and a TFT screen.
GNU General Public License v3.0
964 stars 227 forks source link

LCD1602 Is it correct? #488

Closed zkarolyi closed 2 years ago

zkarolyi commented 2 years ago

Hi Edzelf,

I like the Radio, thank you!!! It is working now.

But ckecking the code I found this in main.cpp:

ifdef LCD1602I2C

include "oled.h.h" // For LCD 1602 display (I2C)

endif

I think it should be like:

ifdef LCD1602I2C

include "LCD1602.h" // For LCD 1602 display (I2C)

endif

Not? Why?

Edzelf commented 2 years ago

You are right. Fixed. It was already fixed in version 2 of the radio.

zkarolyi commented 2 years ago

Thank you!