Projects

Rainbowduino

Rainbowduino Sign using Arduino

The Rainbowduino is a variant of the Arduino and among other things is capable of driving an 8×8 RGB LED matrix. I had just finished a backyard re-model and was in need of an entrance sign. Step 1: Carving and Painting the Sign I had recently acquired a CarveWright CNC wood carving machine. It’s a […]

Arduino Traffic light

Another Arduino Traffic light

After working with the arduino and not knowing what the heck I’m doing I made Another simple traffic light. I looked around the web to find one that looks about normal and came across none. They seemed too fast. So, I found and modded some code to make this work. The coding is pretty simple. […]

Box Powered by Arduino

Electronic Music Box Powered by Arduino (sort of)

Music is the most universal means of expression. Regardless cultural language or age the idea conveyed though music would not differ much. It is safe to say everyone loves music, one type or another. When one’s favourite piece is played there is a overwhelming desire to get involved and turn on one’s Air Guitar. Not […]

Homemade arduino printer

Homemade arduino printer

If you want to make your own high resolution printer (maybe not so high res), you are at the right place. This Instructable will show you how to do with two dead cd/dvd drive and a pen (pilot, whiteboard marker, whatever you have) at the best lego-printer style. Here is how our printer will work: […]

Arduino In Circuit Programmer

My Arduino In Circuit Programmer

This Lazy Old Geek is also an Arduino Geek. If you are an Arduino Geek, one of the common microcontrollers used by Arduinos is the Atmega328 chip. In order to use Arduino software, the Atmega must have bootloader software on it. Okay, so I bought some blank Atmega328-PU chips from Mouser.com. TIP: If you want […]

BLDC Motor Control with Arduino

BLDC Motor Control with Arduino

There is a lot of interest these days among hobbyists in controlling brushless DC (BLDC) motors, which have improved performance and better energy efficiency over traditional DC motors, but are more difficult to use. Many off-the-shelf products exist for this purpose. For example, there are lots of small BLDCs controllers for RC airplanes that work […]

Beginner Programming of Arduino

Beginner Programming of Arduino

This video is from a meeting of the Kids and Technology Meetup group in Washington DC. The youth who show up to these free meetings are eager to learn advanced uses of computers. The presenters were John Dukovich and Hugo Estrada.

Arduino String Character Functions

Arduino String Character Functions Code

The String functions charAt() and setCharAt() are used to get or set the value of a character at a given position in a String. At their simplest, these functions help you search and replace a given character. For example, the following replaces the colon in a given String with an equals sign: String reportString = […]

Arduino Hydrogen Blimp

Arduino-Radio Controlled Hydrogen Blimp

The blimp is controlled by a transmitter on the ground, operated by a human. There are three control levers– one for each motor, and one for the servo that rotates the axis they’re attached to. You push / pull to make the motors speed up or slow down; they’re controlled individually, it’s like driving a […]

Potentiometer or variable resistor control LED Code

Potentiometer or variable resistor control LED Code

The if() statement is the most basic of all programming control structures. It allows you to make something happen or not depending on whether a given condition is true or not. It looks like this: if (someCondition) { // do stuff if the condition is true } [Get Code] There is a common variation called if-else that looks like […]

Scroll to Top