Hi,
I found an old arduino uno board with an ESP8266 ESP-01 soldiered onto it. What the project does is, it gets the temperature and sends it to a server. Nothing special.
I want it to use in a project for a remote wildcam. The wildcam uses a mobile wifi device that enables wifi through 4G. It is run on batteries. The batteries are on their turn managed by a 'charge controller' that charges the batteries with a solar panel.
When there isn't enough power, the 'charge controller' will switch off the load to save the batteries from draining. When there is enough sun and the batteries are full again, it will automatically switch on the load.
Now the problem: When the charge controller enables the load, the arduino with its esp8266 are quicker in booting then the Mifi device. So The arduino will not find the wifi and fails to connect.
I cannot update the firmware on the esp8266 as it is lost and soldiered onto the arduino. I can however programm and update the arduino. And using the arduino I need to reset the ESP after a minute.
I cannot find a way to do it until I accidentally short circuited the ESP using the 5V from the arduino to the GND of the ESP. Everything (arduino and ESP) reboot. And on reboot, the wifi was found and everything works.
Now this sounds as the most idiotic and dirtiest fix ever. But is it possible to have a wire go from a digital pin from the Arduino Uno to the GND of the ESP. And after a minute of delay set the pin output to 'HIGH' creating a short circuit and rebooting everything?