Arduino Powered Etch A Sketch

Project “Etch Your Sketch” is an Arduino powered kit capable of reproducing on a standard Etch A Sketch. A .NET application converts the image to “black pixels” then sends a output of code to the Arduino. The Arduino, powers two stepper motors connected to the Etch A Sketch to reproduce a version [Read more...]

Popularity: 26% [?]

Worlds Smallest Manned Helicopter (Video)

Wrap this around your brain — Worlds smallest manned helicopter GEN H-4 out of Japan. [Read more...]

Popularity: 3% [?]

Documentary “Cut” Handmade Knifes

Raw sharpened steel – knife maker Joel Bukiewicz of Cut Brooklyn talks about the human element of craft, and the potential for a skill to mature into an art.

Popularity: 4% [?]

Manned electric multicopter flight [Experimental]

German engineers have put a man in flight with this battery powered multicopter. The multiblade flying vehicle uses several propellers in order to achieve flight with a test pilot on board. [e-volo]

Popularity: 3% [?]

Laser Guided DIY Wrist Crossbow [WristBow]

The WristBow brings geeks comic book dreams to reality. For more information check out the projects website. Now only if their was a rotten apple to try it on.

Popularity: 10% [?]

Electronics 101: Solenoid Basics

Solenoids are a key component for turning electrical current into motion. Many DIY’s, makers and inventors a like often find themselves using these devices daily. Pin Ball fanatic and inventor Jeri Ellsworth breaks them down.

Popularity: 30% [?]

Video: Power Laces That Work [Shoes]

Prototype for Power Laces 2 a working demo of whats to come. Power Laces started out as an electronic art project to enter into a online contest. A wildly popular Kickstarter project raised money to take them to the next level. [Read more...]

Popularity: 4% [?]

Variable Speed Homebrew Foot Petal [Welding]

Guy makes his own variable speed Foot Petal which could be used for controlling a TIG welding machine or another motor driven device.

Popularity: 4% [?]

Simple Arduino Gmail Notifier Project

Simple python script checks for mail using imaplib and tells the arduino via serial connection. Arduino activates a simple servo motor rotating the flag.

Code:

import serial
import time
import imaplib, re

ser = serial.Serial(3)
print "Starting on " +ser.portstr;
conn = imaplib.IMAP4_SSL("imap.gmail.com", 993)
while (True):
conn.login('YOUR GMAIL USERNAME','YOUR PASSWORD')
unreadCount = int(re.search("UNSEEN (\d+)", conn.status("INBOX", "(UNSEEN)")[1][0]).group(1))
if(unreadCount > 0):
print str(unreadCount) + " new mails!"
ser.write("M")
else:
print "no mail :( "
ser.write("N")
time.sleep(5)

And on the arduino:

#include

int outPin = 2; // Output connected to digital pin 2
int mail = LOW; // Is there new mail?
int val; // Value read from the serial port
Servo motor;
void setup()
{

Serial.begin(9600);
Serial.flush();
motor.attach(outPin);
}

void loop()
{
// Read from serial port
if (Serial.available())
{
val = Serial.read();
Serial.println(val);
if (val == 'M') mail = HIGH;
else if (val == 'N') mail = LOW;
}

// Set the angle of the servo
if(mail)
motor.write(0);
else
motor.write(90);
}

via Redit

Popularity: 2% [?]

DIY Trailer Guide Post Lights

This cheap project shows how to turn some simple parts into guide light for a boat or trailer.

Popularity: 45% [?]

Making a USB Powered Coffee Warmer (Video)

Household Hacker breaks down the steps in turning a old out of date microprocessor and re-purposing it into a USB Powered Coffee Warmer.

Popularity: 4% [?]

How To Make A Cheap Camera Ring Flash

DIY DSLR Ring-Flash build for macro and studio photography. By Motley Pixel.

Popularity: 49% [?]