CARVIEW |
Archive: Arduino
November 18, 2009
Morse code beacon using Arduino
Any hams out there that need a quick-and-dirty morse code beacon? Then you might be interested in Mark VandeWettering's Arduino Based Morse Beacon. I really like the clever way that he stores the code sequences for each character:
It's a little bit clever (a very little bit) but I guess it does require some explanation. Morse code characters are all length six or less, and each element is either a dot or a dash, so it would seem that we can store the pattern in six bits. Let's say that dits are zero and dahs are one. Lets store them so the first element gets stored in the least significant bit, and the next in the second most, and so on. The only trick is knowing when there are no elements left, because otherwise we can't tell (for example) K (-.-) from C (-.-.) To do that, we store a single extra one after all the other elements are taken care of. Then, when we are looping, we do the following. If the pattern is equal to one, we are done (that's our guard bit). If not, we look at the least significant digit. If it is a zero, we have a dit, if we have a one, it's a dah. We then get rid of that element (by dividing by two, or shifting right if that floats your boat) and repeat. Voila. Each character takes only a single byte to store its pattern, and decoding is just done in a few instructions.
Mark admits that using an Arduino for this is a bit of overkill, however I think that convenience trumps component cost for one-of projects like this. If you are up for the challenge, however, you could probably build one with more esoteric components, such as an EEPROM+counter, or even a music-box type mechanical system. Anyone create something crazy cool like that?
In the Maker Shed:
Posted by Matt Mets |
Nov 18, 2009 01:00 PM
Arduino |
Permalink
| Comments (3)
| Email Entry |
Suggest a Site
How-To: Build a Seismic Reflector
Living in the UK, Jim hadn't experienced an earthquake firsthand. After watching recent quakes unfold in Indonesia, he decided to create a device that would keep him aware of the Earth's seismic events. His Seismic Reflector uses a Processing-based software monitor which feeds data to very motorized Arduino -
The aim is to build a device which responds to earthquakes being reported in near-real time via the USGS RSS feeds. The device responds by illustrating the magnitude of the reported earthquake via two fairly chunky vibration motors of the kind used in video game controllers. The device is connected to a PC via a virtual com port over USB (thanks to an on board Arduino). On the PC, an application sits there checking the RSS feed periodically and when a new event it posted to the RSS feed, the desktop app parses the data out of it and presents the magnitude of the quake to the Arduino which interpreters this as rate at which to activate the vibration motors.Check out the Seismic Reflector instructable for details.
[…]
I'd just like to stress that this project is about empathising in some small way with victims of earthquakes. I'm not trying to make light of peoples anguish or suffering, and I'm not trying to play on peoples fears of an impending "big one". I do not experience many earthquakes where I live, but I know a lot of people around the world (specifically around the Med and the Pacific) do. This is my attempt to understand that feeling a bit better.
In the Maker Shed:
Posted by Collin Cunningham |
Nov 18, 2009 07:00 AM
Arduino |
Permalink
| Comments (4)
| Email Entry |
Suggest a Site
November 17, 2009
Introducing the Multixylophoniomnibus, an augmented xylophone
Spotted in the MAKE Flickr pool:
ITP students Hana, Ania, and Greg built this augmented xylophone, the multixylophoniomnibus. Despite having a basically unpronounceable name, the project looks nice and they have a very in-depth review of the process that they went through in order to produce a working product. Nice job!
They also have a large number of photos available in their Flickr photo set.
Posted by Matt Mets |
Nov 17, 2009 06:00 PM
Arduino, Electronics, Music |
Permalink
| Comments (1)
| Email Entry |
Suggest a Site
Tetris meets Arduino

Like Tetris, but tired of playing it alone in the dark on your Game Boy? Well, now you can rejoice, for Luyza Pereira and Bettina Hiel have brought Tetris into the era of physical computing with their installation Tetris meets Arduino. The result is about what one would expect, and with the addition of a tilt sensor to turn the blocks, looks like a pretty fun game. Unfortunately, there don't seem to be any details of the build available, however it should be pretty straightforward to re-make. [via dudecraft]
Posted by Matt Mets |
Nov 17, 2009 10:00 AM
Arduino, Gaming, Remake |
Permalink
| Comments (0)
| Email Entry |
Suggest a Site
Arduino-compatible prototyping board
From the MAKE Flickr pool
Spikenzie Labs shares some glamour shots of the new Hardcopy Arduino prototyping board -
Designed to make a permanent version (or Hardcopy if you will) of your project once you have perfected it on a breadboard but without the expense of embedding your original Arduino into your project. The hardcopy also makes your project more reliable and robust. With the prototyping area integrated into the board with the microprocessor, your project will have fewer boards and fewer wires, and because of that, fewer mistakes and fewer shorts.An interesting option for those who'd rather keep their Duemilanove for developing future projects.
Posted by Collin Cunningham |
Nov 17, 2009 08:00 AM
Arduino, Kits |
Permalink
| Comments (2)
| Email Entry |
Suggest a Site
Random MIDI generator
Miketron converted his random MIDI note generation software(MAC/PC) into hardware form via an ATMega168 chip -
A couple of months I took my MAX/MSP code for Random7 and rewrote so I could embed it into a hardware version. Random7 Hardware Version 1 (R7H) is a very basic version of the Random7 software. The core element of R7H is still the same, the program pick from 7 different midi notes randomly. As of now the key R7H is preset to the key of A Major, and the only control is a potentiometer that controls the speed of R7H. Output for R7H is a midi port, an on/off switch, and there is also a red led the flashes everytime a note is sent.More pics of the device can be seen over at Illuminated Sounds.
Posted by Collin Cunningham |
Nov 17, 2009 05:30 AM
Arduino, Electronics, Music |
Permalink
| Comments (0)
| Email Entry |
Suggest a Site
November 16, 2009
How-To: Arduino-based laser tag
J44 outlines his steps for converting a basic gaming light gun into a custom Laser Tag-like system, including gun and head mounted 'hit' detectors (a la Photon) -
I hope many of you will find this instructable useful and will go on to build your own duino taggers. There is much scope for improving and upgrading this system outlined here. If you do go on to improve on this duinotagger please share your work and hopefully in time the system will evolve into a much richer gaming experience.The system is designed to be compatible with the DIY MilesTag system. Check out the project's instructable for full details.
Related:
Build your own laser tag system
Posted by Collin Cunningham |
Nov 16, 2009 05:00 AM
Arduino, DIY Projects, Toys and Games |
Permalink
| Comments (0)
| Email Entry |
Suggest a Site
Arduino EMF Detector + piezo
YouTuber jodex96 souped up the basic Arduino EMF detector project with a piezo buzzer. The resulting audio feedback from the device is reminiscent of a geiger counter - very cool! I'm loving all the variations people are cooking up for this one.
Related:
Making the Arduino EMF Detector
Posted by Collin Cunningham |
Nov 16, 2009 03:00 AM
Arduino |
Permalink
| Comments (2)
| Email Entry |
Suggest a Site
November 12, 2009
VR bike ride through Google Street View
Maker Aki Mimoto wrote in to let us know about his exciting new Arduino/VR/Web app mashup. He's wired up his wife's bike on a stationary platform to an Arduino using a reed sensor. Using the sensor data from the bike, along with data from a head mounted display (HMD), Ari is able to accurately pinpoint his position within Google Street View. Additional data from the HMD allows Ari to look around at his surroundings for a true VR experience.
Pragmatically explained, it means that I don't have to sit in the darkness or stare at my garage door while I'm huffing away. Hopefully once this is done, I'll be able to spend a few nights a week pedalling away downstairs and work my way across the US or Australia over the course of the year.
In the Maker Shed:
Posted by Adam Flaherty |
Nov 12, 2009 04:00 AM
Arduino, Bicycles, hacks, Virtual Worlds |
Permalink
| Comments (4)
| Email Entry |
Suggest a Site
November 11, 2009
In the Maker Shed: SD card shield for Arduino

Posted by Maker Shed |
Nov 11, 2009 01:00 AM
Arduino, Maker Shed Store |
Permalink
| Comments (1)
| Email Entry |
Suggest a Site
November 10, 2009
Programming a microcontroller without a computer

Say you want to build a re-programmable toy, but the person you are making it for doesn't have access to a computer. How could you do it? Charlie Robinson looked to the past to solve this problem with his Arduino Cassette Engine. His project allows an Arduino to interpret specially coded audio files as binary data, which can then be stored to a memory card. The current version seems to be just storing the data, however there is no conceptual reason why this couldn't be used to actually reprogram the device once it is downloaded.
So, why is this interesting? Well, if the Arduino can be programmed using audio, then suddenly anything with a speaker can be made into a programmer. I think it would be pretty funny if you could use, say, a garden variety cell phone with some Java software to write programs for your micro.
What do you think, is there some potential here, or would it be better to just give aspiring programmers a regular computer to hack on? [Thanks Matt!]
Arduino photo by Matt Biddulph.
Posted by Matt Mets |
Nov 10, 2009 05:00 PM
Arduino, Electronics |
Permalink
| Comments (16)
| Email Entry |
Suggest a Site
MIDI fader controller with Arduino
From the MAKE Flickr pool
Cyrille built this MIDI fader box based on Arduino complete with desktop config software - looks perfect for one-handed live usage. Check out the photoset for the full feature list.
Posted by Collin Cunningham |
Nov 10, 2009 07:00 AM
Arduino, Music |
Permalink
| Comments (0)
| Email Entry |
Suggest a Site
In the Maker Shed: Electronic Brick starter kit

Electronic Brick starter kit includes:
- (1) Arduino sensor chassis
- (1) LCD 16*2 Characters
- (1) Rotary Angle Sensor (Analog)
- (1) Button Switch
- (1) Piezo buzzer
- (1) Tilt Switch
- (2) LEDs
- (1) Light Sensor
- (1) Temperature Sensor
- (1) 2-pin Plugable terminal module
- (5) Fully-buckled 3 Wire Cables
- (1) 10-pin Colorful Ribbon Cable (for connecting the LCD)
Posted by Maker Shed |
Nov 10, 2009 01:00 AM
Arduino, Maker Shed Store |
Permalink
| Comments (2)
| Email Entry |
Suggest a Site
November 9, 2009
Etch at home: Wii Nunchuck Arduino adapter
Don't want to cut the cable on your Nunchuck or buy a teeny circuit board to do the trick when you have etching capability at home? Instructables user dany32412's Nunchuck Arduino adapter tutorial uses pretty much the same layout as Tod Kurt's, but you make it yourself!
Posted by Becky Stern |
Nov 9, 2009 11:00 AM
Arduino, Instructables |
Permalink
| Comments (0)
| Email Entry |
Suggest a Site
November 5, 2009
Art Heist build complete
My friend Tod Kurt and I finished building our laser tripwire art heist! (He did all the heavy lifting.) This is for the Machine Project Benefit this Saturday night. Here's a sneak peek:
We're using a hazer to make the laser beams visible, which works surprisingly well in this semi-open space. To increase the spectacle we installed a few extra lasers that are not being sensed for tripwires, but just look cool. The heisters won't know which these are, however, so it adds to the challenge without increasing complexity.
In this side view you can see what happens when you break too many beams: lots of lights come on, including a blinding, red LED array. For this Tod used an Arduino-controlled AC optical relay. I'm hoping Tod will write up the whole project for a MAKE article, because he has all kinds of neat tricks like this throughout.
The event is shaping up to be truly wonderful, and affords the attendee a rare chance to hang out in Mister Jalopy's secret underground lair. I'm totally shameless, so if you ask I'll eat some laser for you. There are still a few tickets available, hope to see you there!
Related:
Laser tripwires for Machine Project art heist
Machine Project Benefit 2009
Posted by John Park |
Nov 5, 2009 12:30 PM
Arduino, Arts, DIY Projects, Gaming |
Permalink
| Comments (3)
| Email Entry |
Suggest a Site
AIRduino guitar
Ever wished that when you play air guitar, it would make real sounds instead of just the ones from your best death metal face? David Fournier, Jean-Louis Giordano, Monireh Sanaei, Maziar Shelbaf and Gustav Sohtell are here to help. They build the AIRduino guitar, a wearable virtual instrument. Open source with full documentation, naturally. [via Fashioning Technology]
Posted by Becky Stern |
Nov 5, 2009 11:00 AM
Arduino, Instructables, Music |
Permalink
| Comments (0)
| Email Entry |
Suggest a Site
How-To: DIY Apple Remote shield for Arduino
Care to hand control of your playlist over you to an Arduino?
Awhile back I was working on a project that that I wanted to be able to start music the on my mac through the IR receiver. After a while of looking around I found this library which allows you to use your arduino as an Apple Remote. I integrated it in to my project and it worked great! So the other day I decided to make an Apple Remote shield for my arduino.Check computergeek's instructable for the step-by-step.
Posted by Collin Cunningham |
Nov 5, 2009 07:00 AM
Arduino, DIY Projects, Electronics |
Permalink
| Comments (0)
| Email Entry |
Suggest a Site
Adorable stoplight costume
David King built this stoplight costume for his oldest daughter. It's his first Arduino project. Besides flashing the expected red, green, and yellow lights, it incorporates an Adafruit WaveShield to play music. [Thanks, David!]
In the Maker Shed:
Posted by Sean Michael Ragan |
Nov 5, 2009 01:00 AM
Arduino, Electronics, Halloween, Kids, Wearables |
Permalink
| Comments (2)
| Email Entry |
Suggest a Site
November 4, 2009
Kid robot
Amazing robot costume with an Arduino, MAKE Game of life kit and WaveShield! jerrya writes...
My wife and I are making a robot Halloween costume and I just finished the electronics design prototype. I wanted to wait until the costume was finished before revealing it but I'm too excited that I finished my circuit and coding. That's a video of it, and I want to describe it a little. It uses an Adafruit Wave Shield for the sounds, and an antique analog gauge I found at Gateway Electronics here in St. Louis. There's an infrared beam pair from Sparkfun, which will be watching the "candy input slot" on the robot's chest. The gauge displays the count, until too much candy is inserted and it goes crazy. Then after 20 seconds of no more candy, the candy count gets reset, to be ready to do it all over again at the next house. In the sketch, I used these AlphaBeta libraries: LED, button, TimedAction, and Scheduler. These made coding this sketch very easy. He even updated Scheduler with a clear() for me. Thanks again for that! The hardest part was getting it all to work together. I had been trying to use pin 9 for the gauge, and it crashed the sketch. I did more reading and found out you can't do PWM on 9 with the Wave libraries because of the timer. Pin 6 works fine though. The beep sound loop I found on my mac, I think it came from iMovie. The speech is recorded synthesis also from my mac, made like this from a terminal: say -o outputfile.aiff "thing to say" This makes an aiff file. Then I used iTunes to convert all the sound files to WAV with the right settings for the Wave Shield. The chaser LEDs are going to surround the Arduino in a shadow box sort of thing, so people can see the controller, and to punch it up so it isn't so boring. ;D
Detail shots of the electronic components in the robot costume my wife and I built. She did all the painting and papercraft, and I did the electronics. Systems include an Arduino with Adafruit Wave Shield for sound effects, and a proto shield that you see with all the wires and resistors. They are wired to the antique analog gauge on the front panel, which reacts to the IR pair from SparkFun in the Input slot. The speech is recorded synthesis from my Mac. Sayings are: "Candy, my favorite fuel," "Yum yum yum...," "You will be spared from the robot uprising, thank you human," and "Warning! Candy overload!" And on the front panel just for eye candy is a Game of Life kit from the Maker Shed/Adafruit.
Posted by Phillip Torrone |
Nov 4, 2009 08:00 PM
Arduino, Halloween |
Permalink
| Comments (4)
| Email Entry |
Suggest a Site
WoW spellcaster costume with health and mana bars
Eric Lowry built this sweet WoW magic-user costume for his son. It has LED health and mana bars, LED magic power in the gloves, and an LED, er, "touch-sensitive fairy companion." There's one Arduino for the gloves and status bars, and another for the companion.
Posted by Sean Michael Ragan |
Nov 4, 2009 12:00 PM
Arduino, Electronics, Halloween, Wearables |
Permalink
| Comments (0)
| Email Entry |
Suggest a Site
Check out all of the episodes of Make: television






Connect with MAKE
![]() |
MAKE on Facebook Visit our Facebook page and become a fan of MAKE! |
![]() |
MAKE on Twitter Follow our MAKE tweets! |
![]() |
MAKE on Flickr Join our MAKE Flickr Pool! |
MAKE's RSS feed is here.
Add MAKE to iGoogle - GoogleGoogle.
How to add MAKE to your RSS reader - Real simple.
Add MAKE on FriendFeed

Why advertise on MAKE?
Read what folks are saying about us!
Click here to advertise on MAKE!

Make: Online authors!
Gareth Branwyn
Senior Editor
Phillip Torrone
Senior Editor
| AIM | Twitter
Becky Stern
Associate Editor
| AIM | Twitter
Marc de Vinck
Contributing Writer
| AIM | Twitter
John Park
Contributing Writer
| Twitter
Sean Ragan
Contributing Writer
| Twitter
Matt Mets
Contributing Writer
| AIM | Twitter
Dale Dougherty
Editor & Publisher
| Twitter
Shawn Connally
Managing Editor
| Twitter
Goli Mohammadi
Associate Managing Editor
Kip Kay
Weekend Projects
| AIM | Twitter
Collin Cunningham
Contributing Writer
| AIM | Twitter
Adam Flaherty
Contributing Writer
| AIM | Twitter
More contributors: Mark Frauenfelder (Editor-in-Chief, MAKE magazine), Kipp Bradford (Technical Consultant/Writer), Chris Connors (Education), Diana Eng (Guest Author), Peter Horvath (Intern), Brian Jepson (O'Reilly Media), Robert Bruce Thompson (Science Room)
Current Podcast




Make Categories
- 3D printing
- Altoids and tin cases
- Announcements
- Arduino
- Arts
- Ask MAKE
- Bicycles
- Biology
- Cellphones
- Chemistry
- Computers
- Crafts
- Culture jamming
- DIY Projects
- Education
- Electronics
- Events
- Flying
- Furniture
- Gadgets
- Gaming
- Gift Guides
- GPS
- Green
- hacks
- Halloween
- Holiday projects
- Home Entertainment
- How it's made
- Imaging
- Instructables
- Intern's Corner
- Interviews
- iPhone
- iPod
- Kids
- Kits
- LEGO
- Made in Japan
- Made On Earth
- Make Challenge
- MAKE PDF
- MAKE Playlist
- MAKE Podcast
- MAKE Projects
- MAKE Video
- Make: television
- Maker Faire
- Maker Shed Store
- Makers
- Mobile
- Modern Mechanix
- Mods
- Music
- News from the Future
- Online
- Open source hardware
- Paper Crafts
- Photography
- Podcasting
- Portable Audio and Video
- PSP
- Remake
- Retro
- Reviews
- Ringtones
- Robotics
- Science
- Something I want to learn to do...
- Telecommunications
- The Maker File
- Toolbox
- Toys and Games
- Transportation
- Virtual Worlds
- VoIP
- Wearables
- Weekend Projects
- Wireless
www.flickr.com
|
Make Archives
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- March 2009
- February 2009
- January 2009
- December 2008
- November 2008
- October 2008
- September 2008
- August 2008
- July 2008
- June 2008
- May 2008
- April 2008
- March 2008
- February 2008
- January 2008
- December 2007
- November 2007
- October 2007
- September 2007
- August 2007
- July 2007
- June 2007
- May 2007
- April 2007
- March 2007
- February 2007
- January 2007
- December 2006
- November 2006
- October 2006
- September 2006
- August 2006
- July 2006
- June 2006
- May 2006
- April 2006
- March 2006
- February 2006
- January 2006
- December 2005
- November 2005
- October 2005
- September 2005
- August 2005
- July 2005
- June 2005
- May 2005
- April 2005
- March 2005
- February 2005
www.flickr.com
|

Recent Posts from the Craft: Blog
Help | Write for MAKE | Contact Us | Subscribe | Advertise with Us | Privacy Policy| About MAKE | FAQ
© 2009 O'Reilly Media, Inc.
All trademarks and registered trademarks appearing on makezine.com are the property of their respective owners.
Recent Comments