Something WiFi This Way Comes; Wicked Device Unveils Wildfire

WildFire-v2

Wicked Device has released the WildFire board to the world. WildFire is a an Arduino compatible processor board with a Texas instruments CC3000. WildFire adds a few interesting features to the typical ‘Duino clone. Instead of the ATMega328 used in the Arduino Uno, the WildFire uses an ATMega1284p, which gives 16K of SRAM and 128K of Flash ROM (as compared to 2K RAM and 32K Flash in an Uno). A micro SD card slot is also on-board for data logging functions.

In the name of full disclosure, we should mention that [Adam] has known [Victor and Ken] over at Wicked Device for a few years now, and got his hands on a pre-release version of the board to play with. As with any non-standard Arduino board, the WildFire does require some modification to the Arduino IDE. This took a bit of time with the pre-release board. Wicked Device has streamlined the process since then. Everything is contained in a zip file on their product page. Once the IDE is up and running, its easy to get the WildFire’s CC3000 connected to your local access point. From there the internet is your playground. For those of you already asking “So, Hack?”, watch this space – Adam is working on a hack using the WildFire board which will show up in a few days. 

Turning A Storefront Into A Video Game

invasion

[Kris]’ house/office has a huge store window, and instead of covering it up with newspapers, decided to do something cool. He’s had projections and other art pieces on display for his neighbors, but his new storefront arcade game very likely beats all of those.

Every video game needs a display, and this one is no slouch. The display is a 16*90 matrix of WS2812 LEDs with inset into a laser cut grid and put behind a layer of plexiglass. With this grid, the display has a great raster effect that’s great for the pixeley aesthetic [Kris] was going for. In front of the window is an MDF and steel arcade box powered by an Arduino Due.

The game is driven by the Adafruit neopixel library, with a few modifications to support alpha blending. There’s no external memory for this game – everything is running on a second Arduino Due inside the window.

It’s a great looking game, and if you’re ever in [Kris]’ area – behind the zoo in Antwerp – you’re free to walk up and give this game a spin.

Video demo below.

Continue reading “Turning A Storefront Into A Video Game”

DIY Home Control Using A SSRelay

ssrelay

[Ben Jones] just started a new site called Maker-Guide, where he makes some very informative and well produced DIY videos on anything from homemade photography hacks, to controlling an outlet using a solid-state relay.

It’s not the first time we’ve seen a relay controlled outlet, or this one… but it’s certainly one of the cleanest jobs we’ve seen. In his video guide, [Ben] shows us exactly how to fit a standard solid state relay into a regular outlet box, and easily control it with an Arduino Uno.

It even looks like there might be enough space inside the box for a small wireless setup — maybe using a Trinket even? What about using Power-Line networking to control each box via LAN? Could be the easiest home automation implementation yet! Well, aside from certain NEC (national electrical code) concerns of running high and low voltage in the same box…

Anyway if that wet your whistle, check out the great video guides after the break!

Continue reading “DIY Home Control Using A SSRelay”

Running A Laundromat With An Arduino

Wasch_140

[Hubert] sent us a tip about a friend’s project to rescue a laundromat from its failing electronics. We’re not entirely sure what went wrong with the old control center, but considering a replacement would have cost nearly 25,000 EUR, we think [Stefan] found the perfect solution: he gave it an Arduino and Android overhaul (translated).

Although [Stefan] explains that the boards were defective, perhaps one of our German readers can help us out with a more specific translation. More clear, however, are the steps taken to upgrade the system. The situation at the laundromat was a bit of an emergency: there was no way for customers to pay for use of the machines. As a result, [Stefan] had free reign to overhaul things as he saw fit. He decided to remove the complex button setup in favor of a touchscreen Android tablet, which provided users with a simple interface to make selections. The tablet serves only as an input device. The heavy lifting is handled by an Arduino Mega 2560, which hooks up to what remains of the original system and controls the 27 machines in the laundromat.

[Stefan] admits that he isn’t a particular fan of the Arduino, but that for the price, it’s a tough solution to beat. He’s not the only one overhauling with Arduinos. Check out some other examples of upgraded machines, like the Arduino-enhanced PopCARD vending machine.

UPDATE: [Andreas] sent in a better translation of the project page which we’ve included below. He worries his written English isn’t the best, but we think it is a lot easier to understand than the machine translation. Thank you for you work [Andreas!]

Continue reading “Running A Laundromat With An Arduino”

Beautiful Touch-Sensitive Furniture

lamp

It’s taken over a year, but [tinkering techie] has finally completed his touch sensitive nightstand. At first glance, it looks like any normal piece of furniture. With the addition of an Arduino, some copper clad board, and a few LEDs, he’s turned it into a very elegant, electronic home furnishing.

The nightstand is built out of a few very nice pieces of mahogany. Underneath the top of the nightstand, three Kapton-covered copper clad boards are inset along the front and side edges. These capacitive sensing boards are connected to an Arduino Fio that reads the capacitance of these sensors and turns on a small LED under the drawer or the mains powered lamp.

The electronics are powered by a small USB charger with a battery backup all hidden underneath the top of the nightstand. Inside the drawer, a magnetic reed switch turns on an RGB LED whenever the drawer is opened.

While the nightstand itself is a wonderful piece of woodworking, we need to tip our hat for a remarkably seamless integration of fine furniture and electronics. The electronic furniture modifications we usually see are Ikea cruft, but this wonderful homemade nightstand should last decades or centuries.

Video of [techie] going over his build below

Continue reading “Beautiful Touch-Sensitive Furniture”

Primer Tutorials For Arduino IR Remote Cloning And Keyboard Simulation

We’ve featured loads of IR Arduino projects and they are all exciting and unique. The projects spring from a specific need or problem where a custom infrared remote control is the solution. [Rick’s] double feature we’re sharing in this article is no exception, but what is interesting and different about [Rick’s] projects is his careful and deliberate tutorial delivery on how to copy infrared remote codes, store the codes with a flavor of Arduino and then either transmit or receive the codes to control devices.

In the case of his space heater an Arduino was used to record and later retransmit the “power on” IR code to the heater before he awakes on a cold morning. This way his room is toasty warm before he has to climb out from under the covers, which has the added benefit of saving the cost of running the heater all night. Brilliant idea if you don’t have a programmable heating system. Maybe he will add a temperature sensor someday so it doesn’t have to run on strictly time.

A more complicated problem was controlling DVD playback software on his computer remotely. [Rick] says he sits at a distance when watching DVDs on his computer but his computer doesn’t have a remote control like a normal TV. Arduino to the rescue again! But this time he pulls out a Teensyduino because of its added feature of being able to emulate a keyboard and of course the computer DVD playback software accepts keyboard commands. Once again he used the “IRremote.h” library to record certain button codes from an old remote control before adding the retrieved codes to a Teensyduino setup and programmed to receive and decode the remote’s IR signals. The Teensyduino then maps the IR codes to known keyboard shortcuts and transmits the simulated keyboard shortcut commands to the computer via its USB cable where the DVD playback software recognizes the key commands.

As always [Rick] shares all his libraries and sketches on his blog so follow the above links to download the files. You will not miss a single step if you follow his excellent videos below. Plus, here are some other ways and other tools for using an IR remote with your Arduino and cloning an infrared remote.

Continue reading “Primer Tutorials For Arduino IR Remote Cloning And Keyboard Simulation”