Learning Electronics Concepts Step By Step

arduino

We realize that not everyone out there holds a degree in electrical engineering or has the ability to tell NPN transistors apart from PNP transistors by taste alone, so we occasionally like to mention things that appeal to the beginners in the crowd. While there is a clear division between Arduino supporters and detractors, it is hard to deny that the devices have their place, and can be quite useful when exploring certain electronics concepts.

For the supporters out there, [John Boxall] has put together a site jam-packed with Arduino tutorials covering a wide array of concepts and techniques. We have covered his work before in relation to specific topics, but we felt that his site deserved mention as a whole. His tutorials cover some of the most basic concepts such as lighting LEDs with the Arduino, and work their way to more advanced subjects, lesson by lesson.

He is not satisfied with simply introducing a concept and handing out a sketch that does the work. He takes the time to expand on the concepts, giving the reader enough detail to use their new-found knowledge in later projects. If you were to follow his tutorials from beginning to end, you would be exposed to LCD screen control, shift registers, real-time clocks, I2C bus communications, and more. These skills and concepts can be carried on to future projects as well as other micro controllers, making his tutorials a very valuable learning tool worth checking out.

Rebecca Black Running Accessory Also Promotes Running For Everyone Within Earshot

Last Friday, Friday we caught wind of [gvillenave]’s running accessory inspired by Rebecca Black, and we we we so excited, we so excited to bring this to you on Saturday, which comes after Friday.

[gvillenave] came up with the idea of using a song on the annoyance level of “Friday” to encourage a runner into keeping up a good pace. The concept is simple: if the wearer is running fast, the song will speed up. If the wearer is slowing down, the song will slow down and extend the agony.

The build uses an Arduino and [ladyada]’s wave shield coupled to an accelerometer. [gvillenave] included the code, and also wired up some LEDs to a pair of sunglasses that blink more often as the runner’s speed increases. The wave shield has a 3.5mm jack for headphones, but [gvillenave] graciously wired a speaker in, “so that you can annoy people around you, and not just yourself.” All this is packaged in a very nice 3D printed enclosure making for a great looking project.

There’s no word on the effectiveness of the negative reinforcement aspect of [gvillenave]’s build, but we suspect it will help her get down to the bus stop a little faster every morning.

Light Painting – Still Shots And Animations

[Kim Pimmel’s] been doing some really interesting light painting with an Arduino. In the past we’ve seen several light painting projects which use long exposures to capture moving LEDs, or moving LCD displays. But [Kim’s] stepping it up a notch, using cold cathode flourescent lamps, electroluminescent (EL) wire, and lasers. The vibrant colors put out by these sources make for some great photos, but that’s not all she’s got up her sleeve. After accumulating a ton of still photographs from various shoots she decided to edit them together into stopped motion videos.

After the break you can see that one method she used to make these images was to spin the light sources on a standard audio turntable. An Arduino is controlled through processing via Bluetooth in order to move the stepper motor-mounted lights while the record player spins. Add some futuristic music thanks to Daft Punk (which is exactly what she did) and you’re in business.

Continue reading “Light Painting – Still Shots And Animations”

Arduino Home Statistics

[Mike] is doing a little series that is about DIY smart homes. While these wont turn your house into a Hal 9000 (and hopefully wont try and kill you), they are fun and fairly easy to carry out. Parts 1 and 2 focus on the bathroom, part 3+ is in the works. Lets go ahead and look at what is done already.

DIY smart home part 1 covers the kings throne. Through the use of an Arduino, ultrasonic rangefinder, Ethernet shield, and twitter account, whenever the toilet is used a counter goes up. Calculate that against your gallons per flush and you now have reasonable water tracker.

Diy smart home part 2 hits the shower with much of the same hardware and goals. Adding on to the Arduino software there is now a PIR sensor and another twitter account. Basing knowledge from a Lady Ada tutorial on PIR sensors, the additional Arduino code slides into place and some loose ends from part one are cleaned up.

We cant wait to see what is in store for the future and wish [Mike] the best of luck.

Automate Repetitive PC Actions With A Foot Pedal

foot_pedal

Instructables user [bkovac] was sick of clicking the terminal icon on his desktop whenever he wanted to launch a terminal window. Keyboard shortcuts aside, he figured the easiest way to take the tedium out of the process would be to launch terminal windows with a foot pedal.

He grabbed a pedal that he had sitting around in his workshop and took it apart to ensure the switch contacts were configured for his particular use. The wires were run to an Arduino which talks to the computer over serial using a Python script.

While the setup works just fine, it’s definitely not the most efficient or simplest way of getting the job done. In fact, we have seen other methods that are quite a bit simpler, though they lack the potential versatility of this particular modification.

Rather than simply loading a terminal window on his computer, we would love to see this pedal enhanced to perform multiple functions – at which point the Arduino would be a pretty decent choice. We would probably start out by swapping out the full-sized Arduino for a Teensy, mounting it inside the pedal. Multiple foot presses could be used to trigger different events, based upon the number of presses that occur within a given time period. It could be made even more useful by using it to trigger gesture-based events, similar to those seen in plug-ins for Chrome and Firefox.

How would you enhance [bkovac’s] pedal interface? Let us know in the comments.

Cutting Paper Scrolls With Frickin’ Lasers

This circuit illustration adds a scrolling paper feeder to the bed of a laser cutter. In the video after the break you can see that the actual assembly is put on the bed of the laser cutter. After the laser has cut out the specified pattern, the scroll is wound to move an un-cut portion into place. It uses a servo motor to drive one of the spools.

An Arduino Uno with a servo shield is being used for this application. It has one button which winds one spool for a pre-programmed period of time. There’s a few issues with this setup, namely that it’s not tied into the CNC program that runs the laser. There’s also a lack of precision when using a continuously rotating servo like this. If it were upgraded to use a stepper motor and patched into the CNC hardware this would make cutting new scrolls for your player piano a breeze.

Here’s a project that does the opposite, it takes old player piano rolls and digitizes them.

Continue reading “Cutting Paper Scrolls With Frickin’ Lasers”

Real-time Robotic Arm Control With Blender

robotic_arm

Last year, [Justin Dailey] was coming down the home stretch of his senior year as a Computer Engineering student and needed to build a final design project. He always wanted to construct a robotic arm, and figured that there was no better way to legitimize such a project, than to claim that it was “homework”.

While he originally wanted to control the arm with a joystick, he had been messing with Blender quite a bit leading up to his final project, and thought it would be pretty cool to let Blender do the work. He started out by testing his ability to control a single servo with Blender, then slowly increased the complexity of the project. He prototyped the arm using cardboard, and satisfied with his progress thus far, began constructing the arm out of aluminum.

Once he had all six of his servos attached to the arm’s joints and wired to his Roboduino, he got busy constructing a 3D model in Blender. Using a few Python scripts, the movements inside Blender are translated to serial data in real-time, which is relayed to the Roboduino in order to control the arm.

Check out his site if you get a chance – there’s plenty of code to be had, as well as several videos of the arm in various stages of construction and testing.