Hi, Awhile back I built the wireless Weather Station using the Arduino Due board. I am using a 3.2" tft display that plugs right in the Arduino. Everything works perfectly except the "outdoor" temperature numbers get all jumbled up which almost makes it unreadable. After hitting the reset button the numbers look fine but after a short while they get jumbled up again. The libraries I am using are, Wire, TFT_HX8357_Due, BME280, Sodaq_DS3231, DHT, and Rf24,".h" Is it possible there may be a bug in one of the libraries? Thanks for your help!
noCodePosted = difficultToHelp
Are you by any chance not clearing the previously written data before writing the new value when it changes
As far as I know it is. The part of the library for that set of numbers starts out tft.fillRect(TFT_BLACK);
From all my readings the TFT_BLACK is supposed to clear the previous numbers.
sorry to bother you, I figured it out. The first line for those numbers tft.fillRect(40,232,120,40,TFT_BLACK); should have the first two numbers about the same as the next line, tft.setCursor(40,232); That solved the problem. Thanks!