Arduino Interrupts
Sparkfun put another great tutorial on their blog about using interrupts via attachInterrupt() to handle events. It looks like they can only be used for digital reads but it has a great observer like pattern for watching changes and executing functions.int pin = 13; volatile int state = LOW; void setup() { pinMode(pin, OUTPUT); attachInterrupt(0, blink, CHANGE); } void loop() { digitalWrite(pin, state); } void blink() { state = !state; }Kids are the future. Teach 'em to code.
Mermaid's purse
"Art is the lie that enables us to realize the truth."
4 Cheap CNCs for your home
My parents just picked up a Dremel tool for me for my birthday and I'm a bit smitten with the possibilites especially after learning about the open source Dremel powered CNC movement. I learned about the projects through the awesome Kickstarter site when I saw posts about MyDIYCNC ( http://www.mydiycnc.com/) which is the Dremel CNC solution. It is currently sold out but it was funded and they are currently backlogged. While this is a basic kit with a very low cost of entry there is a wide range of other inexpensive CNC solutions. Below is a summary of my research which maybe someone else will find useful. Check back again to see progress.
La Pieuvre
"...speaks 17 languages badly and is subject to doubt..."

