#nanoFramwork on "ESP32-2432S028R" aka Cheap-Yellow-Display (CYD)

1 messages · Page 1 of 1 (latest)

dark spade
#

Hi
I just discovered nanoframework and was wondering if there is any support for the ESP32 Cheap-Yellow-Display boards (https://github.com/witnessmenow/ESP32-Cheap-Yellow-Display) out of the box?
Did not yet find a lot of info on lcd-displays with touch support.
Any hints to docs, code or projects regarding how to create a simple UI in nanoframework would be appreciated.
Great work, keep going!

GitHub

Building a community around a cheap ESP32 Display with a touch screen - witnessmenow/ESP32-Cheap-Yellow-Display

visual stag
#

What is the lcd driver? And is it SPI? We do have quite some. And also a generic one.

dark spade
visual stag
# dark spade Display driver seems to be an ILI9341, according to the data sheet of the board....

There is the support for the screen driver. See: https://github.com/nanoframework/nf-interpreter/tree/main/src/nanoFramework.Graphics/Graphics/Displays You'll have either to build an image with the specific driver, either use the generic image and used the managed driver. No penalty in terms of performances at all. The second solution has the advantage of already having an image for it. Touch wise, no support on the native side. Easier way will most likely to write a managed driver. Touch is usually quite easy.

hushed vapor
visual stag