Hacklet 14 – Hacks Around The House

In this weeks Hacklet we’re looking at household hacks. Not necessarily globally connected home automation hacks, but task specific hacks that we want in our lives yesterday!

We’ve all had it happen, you’re burning the midnight oil on a project when you realize it’s garbage night. The mad dash to collect empty anti-static bags, last night’s Chinese food, and the rest of the trash before actually venturing outside in the dark.

bins2[Mehmet-cileli] doesn’t have to deal with any of that, thanks to My Bins, his automated trash and recycling can moving system. Normally the bins are stationed near the house. Each garbage night, the system springs into action. The cans and their platform pivots 90 degrees. The entire system then rolls along a track to the curb. Once the cans have been collected, everything rolls back ready for more trash. We just hope [Mehmet’s] garbage men are nice enough to put the bins back on their platform!

teatimeNext we have the perfect cup of tea. [Marcel] kept forgetting his tea while it was steeping. After ending up with ink a few times, he built this Automatic Tea Timer. A button starts the timer, and after a few minutes, the tea bag is automatically lifted and a light illuminates to let you know your tea is ready. [Marcel] used a Raspberry Pi Arduino 555 simple R-C timer circuit to create his delay. The lift arm is a discarded hard drive read arm. The light bulb limits current through the voice coils.

greenhouse1[Juan Sandu] always has veggies with his Smart Small Greenhouse. [Juan] has created a desktop sized greenhouse that gives plants what they crave. No, not Brawndo, we’re talking water, warmth, and light. An Arduino Uno uses sensors to monitor humidity, temperature, light, and moisture. Based upon one of two pre-set plant types, the system determines when to water, turn on lights, or even power up a fan to keep temperatures plant friendly.  [Juan] is still working on his greenhouse, but his code is already up on Github.

 

grillupNext up is [nerwal] with his entry in The Hackaday Prize, GrillUp. GrillUp is a remote grill temperature monitoring system with a cooling spray. Up to 6 food grade thermometers provide GrillUp with its temperature data. If things are getting a bit too hot, Grillup cools the situation down by spraying water, beer, or your favorite marinade. The system is controlled over Bluetooth Low Energy from an android smart phone. A laser pointer helps to aim the water spray. Once the cooling zones are set up, the system runs automatically. It even has a sprinkler mode, where it sprays everything down.

led-lightsEvery hacker’s house needs some Sci-fi mood lights, right? [spetku and maehem] round out this weeks Hacklet with their Fifth Element Stone Mood Lighting. Originally an entry in the Hackaday Sci-fi contest, these mood lights are based on the elemental stones in everyone’s favorite Bruce Willis movie. The lights are 3D printed in sections which stack over foamboard cores. The actual light comes from a trio of RGB LEDs. LED control is from the same brain board which controls the team’s Robot Army. The lights are designed to open up just like the ones in the movie, though fire, earth, wind, and water are not required. The servos [spetku and maehem] selected weren’t quite up to the task, but they mention this will be remedied in a future revision.

That’s a wrap for this week’s Hacklet. As always, see you next week. Same hack time, same hack channel, bringing you the best of Hackaday.io!

Arduino RFID Car Starter

[Pierre] recently bought his first car and decided to make his own RFID electric starter for it!

An Arduino Nano controls two relays which in turn can turn the car on, start it, and turn it off. Instead of adding a button for “push to start” he opted for a 13.56MHz RFID module. Now when he passes his RFID badge across the dash, the car turns on — if it’s held there for over a second, the car starts. Another pass and it will turn off.

His eventual goal is to relocate this circuit closer to the wheel and use an NFC ring to start it! He’s done an amazing job hiding all the components under the trim in his car so far, you can’t tell anything is amiss!  Check out the demonstration in the video after the break.

Continue reading “Arduino RFID Car Starter”

ODB-II Hacking Using An Android Tablet

What a strange message to read on the digital dashboard display of your car. This is proof that [Kristoffer Smith] was able to control the ODB-II bus on his Eagle Grand Cherokee.

He’s not just doing this for the heck of it. It stems from his goal of adding an Android tablet on the dashboard which has been a popular hack as of late. This left [Kristoffer] with steering wheel controls that did nothing. They originally operated the radio, so he set out to make them control the tablet.

He had seen an Arduino used to control the CAN bus, but decided to go a different route. He grabbed a USB CAN bus interface for around $25. The first order of business was to use it with his computer to sniff the data available. From there he was able to decode the traffic and figure out the commands he needed to monitor. The last piece of the puzzle was to write his own Android code to watch for and react to the steering wheel buttons. You can check out the code at his repository and see the demo after the break.

Continue reading “ODB-II Hacking Using An Android Tablet”

Arduino-controlled MIDI Sequencer

am808vx3-arduino-synth

[Christian] wrote in to tell us about his third-generation Arduino MIDI sequencer (translated) called the AM808 VX3. He had already laid a strong base for the project in his previous versions. But the user interface was still frustrating at times and that’s where this version comes in. it features a nice clean dashboard like interface, but also includes a configurable virtual interface.

The obvious components seen above include the slider and potentiometer band, as well as the repository of buttons mounted below that. But in the center of the board is a touchpad which [Christian] pulled out of an old Laptop. It interfaces as a PS2 device which makes it pretty simple to use in conjunction with the Arduino. But that’s not the only touch-enabled input device. The rectangle to the right of the touch pad is an LCD screen with a touch overlay. As you can see (and hear) in the clip after the break, the touch screen made it possible for him to rework the controls until they became simple and intuitive.

Continue reading “Arduino-controlled MIDI Sequencer”

Tie Tack Sends Morse Code Seasons Greetings

morse-code-tie-tack

For [Davide Gironi] made a holiday tie tack this year. It’s not made to look like Santa Claus, Frosty, or a Christmas tree. He simply wishes you a Merry Christmas (‘Buon Natale’ in Italian) by flashing the message in Morse code.

Two LEDs have been added to a plain tie tack. It is tethered to the logic circuitry that provides power and drives the red and blue lights accordingly. As you can see in the video after the break, red signifies the end of a letter, and long or short blue flashes correspond to dashes or dots. This doesn’t require much horsepower so he’s gone with an 8-pin ATtiny13 microcontroller (you might be able to find one of these in a light bulb if you look hard enough). The rest of the equipment includes a few resistors, a push button, and a coin cell for power. [Davide] uses a byte-packing technique he learned from a different project to store each letter as an 8-bit packet which means there’s plenty of room to store your message in the chip’s memory.

Continue reading “Tie Tack Sends Morse Code Seasons Greetings”

Tinkering With ODB II And The CAN Bus

[Debrah] is taking his next project out to the garage. He built his own CAN bus reader using a dsPIC.

The nice thing about working with Control Area Network is that it’s a universal standard found on every modern production line automobile. And because of this, the chip you need in order to communicate using that protocol will cost just over a dollar. [Debraj] chose the MCP2551, which comes in several different 8-pin packages. There is even an application note tailored for use with the dsPIC33F family.

The project is running on both 5V and 3.3V rails. This complicates things just a bit, but a level converter makes sure that there’s no communications problems between the chips. A four line character LCD acts as the output during the tests (you can see this in the clip after the break) but he’s already got a second version which looks quite a bit better on the dashboard.

What else can be done with this hack? Well, we’ve seen a method used to read control buttons from the steering wheel before. It all depends on what data your vehicle is transmitting and one way to find that out is to build some hardware and start logging the packets. Continue reading “Tinkering With ODB II And The CAN Bus”

8-bit Computer Project Lands In A Philco Radio Case

We’ve enjoyed seeing the development progress of Veronica, [Quinn Dunki’s] 8-bit computer project. It started out on a breadboard, then moved to edge-connected PCBs, and now [Quinn] has given Veronica a body of her own.

The donor is a Philco Model 42-327T and was produced in 1942. It was chosen because it is non-functional and missing several pieces. We wonder about the collector’s value of the piece but since [Quinn] snagged it from eBay there can’t be in huge demand right now. The teardown images are priceless. There seems to be no reasoning behind component placement for the beast. It looks more like a junk drawer packed full of relic components than something that actually worked once upon a time.

But we digress. After gutting the retro wooden case [Quinn] set out to fabricate her own face plate. Since she’s comfortable working with copper clad, she whipped up a negative design and etched the dashboard seen above. It mounts in the original dial opening, and hosts all of the controls she needs to work with the 8-bit computer. Just below is where the present buttons used to be located. You can just see the hexout display for reading data from the registers mounted in that void.