Train Set Built In A Suitcase Does More Than You’d Think

automated-suitcase-train-set

[Mario] can take his train set on the road with him because he build the thing inside of a suitcase. That in itself is pretty neat, but he pulled off more than just laying down a ring of track and surrounding it with realistic scenery. This train set is automated.

The suitcase itself looks a bit funny and that’s because it started as a portable phonograph. Removing the turntable and it’s requisite parts made plenty of room for the N-scale railroad (that’s really small stuff!). An Arduino with a motor shield drives the train around the loop. A reed sensor below a section of track provides feedback on where the locomotive is in the circuit. When it reaches that point the train stops and a bridge is lowered over the track for some invisible traffic to cross. There is even some audio flair which can be heard in the video after the break. It includes the whistle of the train and the ding of that bell mounted on the top half of the case.

Continue reading “Train Set Built In A Suitcase Does More Than You’d Think”

Wooden Box Repeats Rhythm Used When Knocking On The Lid

knock-box-build

[Paul Mandel] just finished building this knock box project. It’s a familiar concept that uses a solenoid to tap on the side of the box. The Arduino driven setup monitors vibrations on the lid. When you knock on the box, it records the pattern and plays it back using the solenoid.

He was inspired by a knock-detecting door lock. Using that code as the starting point he implemented a system that takes input from a simple push button and echos back the rhythm using the Pin 13 LED on the Arduino board. This is a great way to start as it removes the complexity of driving a solenoid and monitoring a piezo element. After a bit of success he implemented each of those hardware modules one at a time. You can get a look at the final product in the clip after the break.

One of our favorite version of this project is still the knock block from several years back.

Continue reading “Wooden Box Repeats Rhythm Used When Knocking On The Lid”

Solving A Rubick’s Cube With LEGO And Popsicle Sticks

solver

We’ve seen automated Rubick’s Cube solvers before, but never one that has garnered as many awards as [James]’ popsicle stick and LEGO Rubick’s Cube solver.\

To keep the project complexity down, [James] opted not to use a webcam to detect the color pattern on each face of the cube. Instead, he wrote a little Python app to manually enter the pattern on each face before letting his algorithm loose on the cube and calculating how to solve it.

So far, [James] has seen a huge amount of success from his project. He entered it in the New Zealand Brightsparks competition netting him $1000. This competition led to a win in the Realize the Dream science competition where he won a major prize and an entry into the International Taiwan Science Fair held early next year. An awesome accomplishment from a budding hacker, and we can’t wait to see what he comes up with next.

You can check out a video of [James]’ cube solver after the break.

Continue reading “Solving A Rubick’s Cube With LEGO And Popsicle Sticks”

Twitter Radio

twitter-radio

This anthropomorphized wood bowl will read Tweets out loud. It was built by [William Lindmeier] as part of his graduate work in the Interactive Telecommunications Program (ITP) at New York University. View the clip after the break to see and hear a list from his Twitter feed read in rather pleasant text-to-speech voices.

The electronics involved are rather convoluted. Inside the upturned bowl you’ll find both an Arduino and a Raspberry Pi. But that’s not the only thing that goes into this. The best sounding text-to-speech program [William] could find was for OSX, so there is a remote computer involved as well. But we think what makes this special is the concept and execution, not the level of hardware inefficiency.

The knob to the left sets the volume and is also responsible for powering down the device. The knob of the right lets you select from various Twitter lists. Each turn of the knob is responded to with a different LED color in the nose and a spoken menu label. You can get a quick overview of the project from this summary post.

Continue reading “Twitter Radio”

Arduino Esplora Makes A Great Controller

duino

The folks at Arduino seem to be stepping up their game. With the new Arduino Leonardo board able to emulate USB keyboards and mice right out of the box, it seems the perfect time for Arduino designers to come up with a proper video game controller. This new board is called the Arduino Esplora and packs enough buttons and sensors inside to capture just about any user input you can imagine.

On board the Esplora is the same ATMega 32U4 microcontroller found in the newest Arduino boards. For input, the designers included an analog joystick, four tact switches, a linear pot, a microphone, and light sensor. The Esplora also includes a three-axis accelerometer, RGB LED, buzzer, and a breakout for an SPI-controlled TFT LCD display, lest you would want to recreate something like the new Wii U controller on your own.

You can check out everything the Esplora can do over on the official Arduino site for the Esplora library.

OLED Name Badge With Rechargeable LiPo Cell

oleduino-name-badge

Here’s a project that let [Rick Pannen] try his hand with an OLED display and a rechargeable power source. He calls it OLEDuino which is a mashup of the display type and the Arduino compatible chip running the whole thing. He figures it will serve nicely as a geeky name badge but also ported a Breakout type game to play when he’s bored.

The project is an inexpensive way to attempt a more permanent trinket than simply using Arduino and a breadboard. [Rick] sourced the OLED display and USB LiPo charging cable on eBay. The ATmega328 hiding below the display is being driven from the 3.7V LiPo cell without any power regulation. The four buttons at the bottom provide the only user input but it should be more than enough for a few simple tricks.

Head over to his code repo for a bit more information. The schematic and board are both Eagle files. We generated an image of the schematic and embedded it after the break if you want to take a quick look at how simple the hardware really is.

Continue reading “OLED Name Badge With Rechargeable LiPo Cell”

USB NeXT Keyboard

USB NeXT Keyboard

[Ladyada] and [pt] had an old keyboard from NeXT, but since it used a custom protocol it wasn’t usable with modern hardware. So they built a custom device to convert the NeXT protocol to USB.

The device uses a Arduino Micro to read data from the keyboard and communicate as a HID device over USB. It connects to the keyboard using the original mini-DIN connector, and is housed in the classic Altoids tin enclosure.

Since the protocol used by NeXT isn’t standard, they had to figure it out and write some code to interpret it. The keyboard communicates bidirectionally with the computer, so they needed to send the correct frames to key data back.

Fortunately, they hit on a Japanese keyboard enthusiast’s site, which had protocol specifications. They implemented this protocol on the Micro, and used the Keyboard library to create a HID device.

The final product is an adapter for NeXT to USB, which allows for the old keyboards to be used on any computer with USB. It’s a good way to bring back life to some otherwise unusable antique hardware.