Computers & Mobile

The latest DIY ideas, techniques and tools for digital gadgetry, open code, smart hacks, and more. Processing power to the people!

Understanding Arduino Interrupts

uC Hobby has a piece up on the use of interrupt routines in Ardunio programming: Often when working on microcontroller projects you need a background function to run at regular intervals. This is often done by setting up a hardware timer to generate an interrupt. The interrupt triggers an Interrupt Service Routine (ISR) to handle […]