Projects

Aqua Garduino Mini

Aqua Garduino Mini @hydroFishAqua82

Arduino Powered Micro Aquaponic System with Pi Camera and Twitter Feed We are creating an automated aquaponic system with mobile updates via Twitter. Sensors and motors will be controlled from an Arduino while the entire system, including mobile updates, will be orchestrated by a Raspberry Pi. Tweets include pictures, sensor data, and system-critical updates. Original […]

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 Button Mouse Control

Arduino Button Mouse Control Code

Using the Mouse library, you can controls a computer’s onscreen cursor with an Arduino Leonardo, Micro, or Due. This particular example uses a five pushbuttons to move the onscreen cursor. Four of the buttons are directional (up, down, left, right) and one is for a left mouse click Cursor movement from the Arduino is always […]

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

Arduino Switch case2 Statement

Arduino Switch (case) Statement, used with serial input

An if statement allows you to choose between two discrete options, TRUE or FALSE. When there are more than two options, you can use multiple if statements, or you can use the switch statement. Switch allows you to choose between several discrete options. This tutorial shows you how to use switch to turn on one […]

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