Flexible Arduino Sure To Be A Hit

 

Scrolling LED on soda can

Wearable, lightweight hacks have long been dominated by the Lilypad. This will probably change with the introduction of the Printoo. Using printable circuit technology, the Printoo takes a modular approach to enable hackers, makers, and engineers alike to construct flexible circuits that can be put on almost anything, including paper!

Powered by the all too familiar ATmega328, the Printoo core module is fully compatible with the Ardunio IDE. The modular design enables functionality with several other printed devices including displays, batteries, sensors and even LED strips to make many different projects possible. One of the most interesting modules is the 1.5 volt, 500 micron thick electrochromic display.

Be sure to check out their Kickstarter, which has a nice video that demonstrates the project. If funded, they will be available in October in case you want to get your hands on one. Or feel free to make your own. Just be sure to let us know if you do!

A LIN Bus Signal Injector

LIN bus signal injector

[Zapta] tipped us about his latest project: a LIN bus signal injector. For our unfamiliar readers, the LIN bus is a popular automotive bus that is used to interface with buttons, lights, etc. As [Zapta] was tired of having to press the Sport Mode button of his car each time he turned the ignition on, he thought it’d build the platform shown above to automatically simulate the button press.

The project is based around an ATMega328 and is therefore Arduino IDE compatible (recognized as an Arduino Mini Pro), making firmware customization easy. In the car, it is physically setup as a proxy between the LIN master and the slave (which explains the two 3-wires groups shown in the picture). It is interesting to note that the injection feature can be toggled by using a particular car buttons press sequence. The project is fully open source and a video of the system in action is embedded after the break.

Continue reading “A LIN Bus Signal Injector”

Lego Robot Plays Games For You As You Sleep

robot

[Uli Kilian] — best known for solving 100 Rubik’s cubes during the 2011 London Marathon — got addicted to a free iPad game called Jurassic Park builder. Being the efficient man he is, he soon realized the game could be automated — after all, you just have to tap on dinosaurs every few minutes to earn in-game currency…

He’s using a Lego Technic set with an old iPad, and an Arduino connected to a Windows laptop. Wheels roll the iPad back and forth as the robot plays the game. The “finger” of the robot is wrapped in tin-foil and connected to a ground pin to simulate a human finger for the iPad. The article doesn’t explain how it works, but by looking at the robot it appears to just randomly tap away back and forth across the screen — which we guess works for this game?

He hasn’t played with Lego since he was 8, and only just learned about the Arduino a few weeks prior to building this. As a 3D artist he was intrigued to do something in the real-world — nice!

[Thanks Aurelio and William!]

Fixing Apple TV’s Terrible UI

IR

Despite Apple’s unfailing dedication to UI, they still sometimes manage to put out some stinkers. The latest of these is the ‘keyboard’ for the search interface in the Apple TV. It’s an alphabetical keyboard, laid out in a square with the obvious frustration that goes along with that terrible idea. [Lasse] was frustrated with this design and realized searching anything with the Apple TV IR remote is a pain. His solution was to build his own version of the Apple TV remote with a web interface, powered by an Arduino.

Inspired by the Apple Remote Arduino Shield we featured a few years ago, [Lasse] stuck an IR LED int the pins of Arduino with an Ethernet shield, current limiting resistors be damned. The web UI is the innovative part of this build. He’s hosting a simple website on the Arduino that allows him to type – with a real keyboard – a search query into the website, and have the Arduino take care of moving the Apple TV cursor around to select each letter.

The web UI has all the features found on the Apple TV remote, including the swipe gestures, and has a really slick brushed metal texture to boot. You can check out the video of [Lasse]’s project typing text into an Apple TV hilariously fast below.

Continue reading “Fixing Apple TV’s Terrible UI”

Desktop Sized Tamagotchi Is Even Harder To Ignore

desktop tamagotchi

[Vadim] was feeling a bit bored at work one day and dreamed up this rather odd project. He had a spare LED matrix handy, and thought, “I should build a giant Tamagotchi…” and so he did.

In case you’re not aware, Tamagotchi’s were digital pets introduced in the late 90’s. You had to feed them, play with them and even train them — attempting to teach the responsibility of having a real pet. It was a bit of a fad, and to be honest, they were really quite annoying — but that didn’t stop [Vadim] wanting to make his own!

He’s using an ATmega328P with the Arduino boot loader at the heart of this project. The LED matrix is made of a group of four 8×8 LED modules with four shift registers (74HC595) and two Darlington transistor arrays to take the current — This is because the 256 LEDs need to be multiplexed down to 32 IO’s (16 rows + 16 columns).

Once the hardware was all done, he started coding — he’s actually coded the entire game from scratch, and while it’s not that complex it’s still an impressive amount of effort that went into this desktop sized Tamagotchi!

To see it in action, stick around after the break.

Continue reading “Desktop Sized Tamagotchi Is Even Harder To Ignore”

Reach Out And Touch Your Next Project With Long Range RC Controller

RC01

Long range wireless control of a project is always a challenge. [Mike] and his team were looking to extend the range of their current RC setup for a UAV project, and decided on a pair of Arduino mini’s and somewhat expensive Digi Xtend 900Mhz modems to do the trick. With a range of 40 miles, the 1 watt transceivers provide fantastic range. And paired with the all too familiar Arduino, you’ve got yourself an easy long range link.

[Mike] set the transmitter up so it can plug directly into any RC controller training port, decoding the incoming signal and converting it into a serial data package for transmitting. While they don’t provide the range of other RF transmitters we’ve seen, the 40 mile range of the modem’s are more than enough for most projects, including High Altitude Balloon missions.

The code for the Arduino transmitter and receiver sides is available at their github. Though there is no built-in error correction in the code, they have not had any issues.  Unfortunately, a schematic was not provided, but you should be able to get enough information from the images and datasheets to construct a working link.

 

An Exceptional BASIC Computer

BASIC

Since [Dan] has started using microcontrollers, he’s been absolutely fascinated by the fact these chips are essentially low performance computers. Once he caught wind of TinyBASIC, he decided he would have a go at creating a simple, tiny computer that’s very simple to the old, tiny, 8-bit computers of yore.

The computer is built on an Arduino shield, using TinyBASIC, the TVout library, and the PS/2 keyboard library. After piecing together a little bit of code, the Arduino IDE alerted [Dan] to the fact the TVout and PS/2 libraries were incompatible with each other. This inspired [Dan] to use the ATMega328P as a coprocessor running the TVout library, and using the capacious ATMega1284P as the home of TinyBASIC and the PS/2 library.

A circuit was put together in Fritzing using minimal components, and a PCB milled out of copper board. After the board was tinned, [Dan] had a beautiful minimalist retro computer with nearly 14kB of RAM free and an RCA display.

Future versions of the build will probably be based around the Arduino Mega, allowing for a TV resolution of 720×480. Also on tap are an SD card slot, LEDs, pots, and possibly even headers for I2C and SPI.