NUCLEO-F411RE with X-NUCLEO-GFX01M2

Can someone point me to a documentation or example showing how to use a X-NUCLEO-GFX01M2 TFT screen with a STM NUCLEO-F411RE board?
I have found doc for using a NUCLEO-F411RE board and it works fine.
My need is these two boards together.
I have search everywhere it was possible, but no success.
Thanks in advance to anyone that can help me.

Here’s my solution.
I use these boards with Bodmer’s TFT_eSPI lib.
My platformio.ini file contains the extract:

platform = ststm32
board = nucleo_f411re
framework = arduino
monitor_port = hwgrep://0483:374b
upload_port = hwgrep://0483:374b
monitor_speed = 115200
lib_deps = TFT_eSPI
SPI
bodmer/TFT_eWidget@^0.0.6
bodmer/TFT_eSPI@^2.5.33
build_flags =
-D USER_SETUP_LOADED=1
-D STM32=1
-D NUCLEO_64_TFT=1
-D STM_PORTA_DATA_BUS=1
-D STM_PORTB_DATA_BUS=1
-D ST7789_DRIVER=1
-D TFT_WIDTH=240
-D TFT_HEIGHT=320
-D TFT_MISO=PA6
-D TFT_MOSI=PA7
-D TFT_SCLK=PA5
-D TFT_CS=PA9
-D TFT_DC=PB10
-D TFT_RST=PA1
-D SPI_FREQUENCY=80000000
-D TFT_RGB_ORDER=TFT_BGR ; Colour order Red-Green-Blue
-D LOAD_GLCD=1 ; Font 1. Original Adafruit 8 pixel font needs ~1820 bytes in FLASH
-D LOAD_FONT2=1 ; Font 2. Small 16 pixel high font, needs ~3534 bytes in FLASH, 96 characters
-D LOAD_FONT4=1 ; Font 4. Medium 26 pixel high font, needs ~5848 bytes in FLASH, 96 characters
-D LOAD_FONT6=1 ; Font 6. Large 48 pixel font, needs ~2666 bytes in FLASH, only characters 1234567890:-.apm
-D LOAD_FONT7=1 ; Font 7. 7 segment 48 pixel font, needs ~2438 bytes in FLASH, only characters 1234567890:-.
-D LOAD_FONT8=1 ; Font 8. Large 75 pixel font needs ~3256 bytes in FLASH, only characters 1234567890:-.
-D LOAD_GFXFF=1 ; FreeFonts. Include access to the 48 Adafruit_GFX free fonts FF1 to FF48 and custom fonts
-D SMOOTH_FONT=1

Many examples are available in github Bodmer’s TFT_eSPI lib.

It works for me.

HI there
Can give me a hint, where I can find the source code?

Tobias

Hi @badi
Lib is available here