-
Dear all,
Is it possible to use a pre compiled file (for example Wemos D1 mini ESP32)? Or do I need to compile it by myself? If yes can someone give me a hint which file I do have to adapt? Thank you :) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Sure! The The pins used in So you don't need to compile the firmware yourself if you use that pinout. The difference in binaries vary from device-to-device if they need other drivers, specific pins or hardware/software configurations. In your case, just connect the jumper wires according to the documentation and use
|
Beta Was this translation helpful? Give feedback.
Sure! The
d1-mini-esp32_ili9341_full_4MB_v0.6.1.bin
binary should work on any ESP32-WROOM (or even ESP32-WROVER if gpio 16 and 17 are unused). The d1-mini-esp32 is just our ESP32 of choice and it is also compatible with other development boards, like the ESP32 NodeMCU.The pins used in
d1-mini-esp32_ili9341_full_4MB_v0.6.1.bin
are choosen based on the d1 mini ESP32 with Lolin 2.4" TFT shield, but you can essentially use any ILI9341 or ESP32 hardware instead. The pinout for that binary to connect the ESP32 to your screen is described here: https://haswitchplate.github.io/openHASP-docs/0.6.1/displays/MSPxxxx/#pin-configurationSo you don't need to compile the firmware yourself if you use th…