Month: January 2016

Arduino Reset Function Using Only Software

Here is a simple, clean and proper solution for doing a full Arduino reset via a simple software function. The general solution was found here and was implemented as follows: Include the proper library: #include <avr/wdt.h> Place this within your “Setup” function: MCUSR = 0;  // clear out any flags of prior resets (used for […]