Does ESP-NOW work with SPI protocol altogether? #12994
-
Hi, However, when I try to add a TFT LCD Display (ILI9314) to display my sensor readings, my application stops working and cannot work anymore because of the below problem.
Not sure why this is like this. Do you have any idea how to debug this type of problem? Some of the troubleshooting that I did were:
The issue persists. The only way for me to make it work again is to erase and re- download the MicroPython firmware so that I could go back to a fresh start and then add my ESP-NOW code again. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
We'll need more information to have any hope of diagnosing this:
If all the code is Python you should not need to re-flash the firmware. The best way to develop is to have the code started by a single module - let's say >>> import my_code When it's debugged and you want it to run on power up, edit That way you should never need to re-flash: a hard reset or power cycle should always get you back to the REPL. |
Beta Was this translation helpful? Give feedback.
We'll need more information to have any hope of diagnosing this:
If all the code is Python you should not need to re-flash the firmware. The best way to develop is to have the code started by a single module - let's say
my_code.py
. You can test it by issuingWhen it's debugged and you want it to run on power up, edit
main.py
to do the import.That way you should never need to re-flash: a hard reset or power cycle should always get you back to the REPL.