Bodmer
Bodmer
Run the My_DarkSkyWeather_Test example to see if the weather service is working. You may need to pay to access the data as I hink DarkSky is not longer free. This...
The two libraries will be using different instances of the SPI class on the same hardware port so they do not cooperate with hardware access. The Lora and TFT_eSPI classes...
The library by default uses SPI mode 3 for an ST7789 display so the clock state change may be the cause of the problem. https://github.com/Bodmer/TFT_eSPI/blob/master/TFT_eSPI.h#L130-L137 Try your display with mode...
Thanks for raising this. The Espressif software team like to change things that are not broken! The fix is in the link you provided. I will try this next week.
Adding the include to the relevant processor header files does not break the library for the Arduino environment so I will add it in the next update. For example for...
DMA for the STM32F processors used to work but it appears that a board package update at some point in the past has broken this. Have you tried earlier board...
Use STM32 MCU based board 2.6.0 or use the githun TFT_eSPI master copy version 2.5.43 It appears that breaking chages have been made to the latest STM32 board packages.
Things to try: 1. Visually check the baklight LEDs are on. The BL signal may need to be biased to turn it on. 2. The board is fitted with a...
It looks like you have more than 1 setup file being called up and that is also defining pins. Check you User_Setup_Select.h file and make sure only one setup file...
Try using the optional touch threshold parameter, by default it is 600, see here: https://github.com/Bodmer/TFT_eSPI/blob/master/Extensions/Touch.h#L11-L18 Maybe a threshold of 2000 would work.