Wireless Door Alarms Protect Your Stuff From Afar

wireless-shed-alarm

[Webby] had a friend named [Steve], and as the story goes [Steve] had a few storage sheds on his property that were prone to break-ins.

While the doors were all fitted with a lock, wooden doors are only so strong, and are easy fodder for intruders bearing crowbars and the like. [Steve] was looking for a good way to know when people were poking their heads where they don’t belong, so he rigged up a set of simple alarms that let him know when it’s time to break out the shotgun.

On each of the shed doors, he installed a small IR proximity sensor wired up to a PIC12F675 microcontroller. The PIC is is connected to the “call” button a medium range wireless radio, so that whenever the IR sensor detects that the door is ajar, the PIC triggers an alert on the base unit.

The solution is simple, which we figure also makes it pretty reliable – nice job!

A “Jukebox” In A Bell Jar

jukebox in bell jar

[Tim] wrote in to tell us about his Mark III hard drive in a bell jar, and we were quite impressed! The principle of using a bell jar to protect the hard drive inside so the world can see it spinning is really a cool idea, but his execution of this project is excellent. It was reportedly so good that an unnamed college actually asked him to build one of his drive displays for them.

The Mark III is an excellent build, and the little hard drive has been swapped to the front of it for better visualisation. The disadvantage of the iPod Mini used for the Mark III build is that it actually buffers enough so that the read head doesn’t have to spin during the entire song.  Because of this, we thought that his first build, nicknamed [pink], was even more interesting, if ever so slightly less refined. By many of our hacking standards though, both are incredibly finished works of art!

Both these builds feature a plethora of LEDs to keep you entertained, and can be seen demonstrated after the break! Continue reading “A “Jukebox” In A Bell Jar”

Print In Chocolate, Sugar, And Clay With A Universal Paste Extruder

With a glut of Easter candy acquired over the last week, you might be thinking what to do with mountains of chocolate and other sugary delights. How about sending them through a 3D printer with [RichRap]’s universal paste extruder?

[RichRap]’s extruder uses a common 10cc syringes slowly squeezed by an off-the-shelf stepper motor. Chocolate wasn’t the only goal for this build;  [RichRap] also tested out cake icing, corn chip dough, muffin and sponge cake batter with his new toy. The most interesting paste in our humble opinion is porcelain ceramic clay. [RichRap] was able to make some very nice 3D printed greenware, but we’ll withhold our judgement until the ceramic parts are fired later this week.

After the break you can check out the introduction video for the Universal Paste Extruder, as well as a quick glimpse of [RichRap]’s very cool porcelain clay prints. We’re very interested in the ceramics printed with this extruder, if only for printing reprap parts that will be exposed to plastic-melting temperatures.  Of course, all the files to build your own paste extruder are up on Thingiverse.

Tip ‘o the hat to [Josef Prusa] for sending this one in.

Continue reading “Print In Chocolate, Sugar, And Clay With A Universal Paste Extruder”

Playing Chiptunes With A YM2149 And Optimizing An Arduino

[Oryx] grew up with the bleeps and bloops of an Atari ST, so it comes as no surprise he would want to relish in his nostalgia by playing with the YM2149 sound generator he recently picked up on eBay. Like most of us, [Oryx] went to his old standby, the Arduino, when it came to connect this bare chip to his computer. The first circuit didn’t work, so after a lot of poking around the firmware, [Oryx] discovered the benefits of hand-optimizing software.

There are a lot of sound files available for the YM2149 floating around on the Internet. These files are just dumps of the 16 registers at 50Hz, so it’s very easy to send these from a computer to an Arduino over a serial connection. Unfortunately, when [Oryx] got his breadboard set up nothing happened. After breaking out the ‘scope, he discovered the Arduino was switching pins 100 times slower than the YM2149 data sheet called for.

[Oryx] remembered seeing a great blog post going over the speed at which the digitalWrite() function changes pin states. We’ve seen this before, and the fastest way to change pin states on the Arduino is with the ugly bitwise manipulation. After changing a few lines of code, [Oryx] was switching two pins nearly simultaneously.

Now that the YM2149 chip is working correctly, [Oryx] is planning to make a MIDI synth out of his project. You can get an idea of how that will sound with the demo video he put up after the break.

Continue reading “Playing Chiptunes With A YM2149 And Optimizing An Arduino”