Category: Electronics

Arduino And Crystalfontz CFA835 Display

I’m fortunate enough to live right down the street from Crystalfontz America (Crystalfontz.com),  a supplier of high-quality LCD, OLED and other types of display modules. It is entirely thanks to their sponsorship of the current engineering project I’m apart of, that I now have the opportunity to work with their CFA835 graphical LED displays with […]

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 […]