Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Display question
#28
Hi Jorge, oh no, how long has this been happening again? I just went through this thread again to refresh my memory, I see at the end it only appeared to be RTC related. How long are the wires from the RTC to controller board? I've been doing more with the I2C lately and have discovered just a couple extra inches of wires can mess everything up.

If you wanted to have the display reset when the plug turns red, in v4.2 find line 9507 and you should see the following.

Code:
if (communicating == 2) {webpageOpen = 0; internetEnabled = 0; if (screenSaverRunning == 0) {updateInternet(); myFiles.loadBitmap(741, 27, 45, 20, "disconn.raw");}}

At the end of this line you can see where it loads the red plug.

If you add this directly after it will restart the display.

Code:
   pinMode(resetPin, OUTPUT);
   digitalWrite(resetPin, LOW);

This is what it should look like updated.
Code:
if (communicating == 2) {webpageOpen = 0; internetEnabled = 0; if (screenSaverRunning == 0) {updateInternet(); myFiles.loadBitmap(741, 27, 45, 20, "disconn.raw"); pinMode(resetPin, OUTPUT); digitalWrite(resetPin, LOW);}}
Reply to top


Messages In This Thread
Display question - by jmcadsl - 04-17-2018, 11:54 AM
RE: Display question - by Rob F - 04-17-2018, 06:33 PM
RE: Display question - by jmcadsl - 04-18-2018, 12:17 PM
RE: Display question - by Rob F - 04-19-2018, 01:02 AM
RE: Display question - by jmcadsl - 04-19-2018, 01:05 AM
RE: Display question - by Rob F - 04-19-2018, 01:17 AM
RE: Display question - by jmcadsl - 04-20-2018, 02:13 AM
RE: Display question - by Rob F - 04-20-2018, 08:59 PM
RE: Display question - by jmcadsl - 04-21-2018, 01:10 AM
RE: Display question - by Rob F - 04-21-2018, 02:18 AM
RE: Display question - by jmcadsl - 04-23-2018, 11:54 AM
RE: Display question - by Rob F - 04-23-2018, 08:11 PM
RE: Display question - by jmcadsl - 04-24-2018, 08:12 AM
RE: Display question - by Rob F - 04-25-2018, 12:02 AM
RE: Display question - by jmcadsl - 04-25-2018, 05:00 AM
RE: Display question - by Rob F - 04-25-2018, 04:57 PM
RE: Display question - by jmcadsl - 04-26-2018, 04:34 PM
RE: Display question - by Rob F - 04-26-2018, 04:45 PM
RE: Display question - by jmcadsl - 04-27-2018, 01:58 AM
RE: Display question - by Rob F - 04-27-2018, 05:54 PM
RE: Display question - by jmcadsl - 05-06-2018, 02:29 AM
RE: Display question - by jmcadsl - 05-06-2018, 04:41 AM
RE: Display question - by jmcadsl - 05-06-2018, 09:11 AM
RE: Display question - by Rob F - 05-06-2018, 07:11 PM
RE: Display question - by jmcadsl - 05-13-2018, 12:57 PM
RE: Display question - by Rob F - 05-13-2018, 05:04 PM
RE: Display question - by jmcadsl - 08-19-2018, 12:44 PM
RE: Display question - by Rob F - 08-19-2018, 05:27 PM
RE: Display question - by jmcadsl - 08-20-2018, 01:54 AM
RE: Display question - by Rob F - 08-20-2018, 10:12 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Display Cable Right one Gordon Lehmann 2 4,471 03-02-2019, 03:55 AM
Last Post: Gordon Lehmann
  Troubleshoot display board Skwerl77 7 7,181 08-22-2018, 05:03 PM
Last Post: Rob F
  pH Probe Question aquaalgae 1 3,553 06-28-2018, 04:51 PM
Last Post: Rob F
Question Question before ordering philips 11 12,647 01-13-2018, 01:06 AM
Last Post: Rob F

Forum Jump:

Current time: 04-28-2024, 05:37 AM