This little Arduino library makes it easy to schedule repeating tasks with only a few lines of code. Features: Simplifies code Does not block the ‘loop’ function Runs a defined function(Task) you created at a set interval. Tasks can be delayed on start-up. Useful for when your task is dependent on other tasks starting first. Set the number … Read More →
Tag Archives: Arduino
Arduino – HTTP Post Requests
Connecting your Arduino to the internet is pretty simple. Just get the Ethernet shield and use the Ethernet examples to start with. I wanted to use my Arduino to capture information and post it to my website where I could format the data as needed. (Pachube/Cosm is another option, but I wanted more freedom to … Read More →
Arduino Uno and Mega Dimensions
Recently I was busy building a nice case for an Arduino and I needed the dimensions to make the correct mounting holes. I found this handy diagram online and though I would share it with everyone. UPDATE: Here are some more drawings that include the pin layouts as well. We recommend the following books: Getting … Read More →
Angry Birds meet Arduino
Arduino’s are challenging conventional thinking. This is a perfect example of how easy it is to take a winning recipe like Angry Birds and make it even better.
Opensource CNC controller written for Arduino’s (G-code interpreter GRBL)
Traditional CNC machines used old-fashioned printer / parallel ports to connect to a computer. The computer then sends the signals to the motor’s over individual cables. So why would you want to use a Arduino powered CNC controller? Well the team from Dank that developed the software called Grbl have a few good reason for … Read More →