LED Sexting Belt Buckle

For some ungodly reason, [Scott] has a friend that wanted a ‘sexting themed’ Halloween costume. We won’t try to make any presumptions of the creativity or mental stability of [Scott]’s friend, but the SMS scrolling LED belt buckle he came up with is pretty cool.

The belt is based around a $13 scrolling LED belt buckle [Scott] found online. There was a problem with the belt buckle, though. Thirteen dollars means [Scott] didn’t get a whole lot of features with his buckle, so there are only 3 buttons on the entire device: letter up, letter down, and enter. Instead of pressing a button 80 times to get a lowercase ‘z,’ an Arduino was thrown into the mix to take care of all the button pressing.

The Arduino sketch could now input any message into the belt buckle in a matter of seconds. All that was left to do is taking care of the SMS to text part of the build. For this, [Scott] used the Sparkfun USB Host Shield and a custom Android app. Whenever an SMS is received on the phone, the message is sent through the USB shield to the Arduino and output on the belt buckle.

We won’t make any assumptions about the content of the messages during the Halloween party, but at least the video demo of the build is family friendly. Check it out after the break.

Continue reading “LED Sexting Belt Buckle”

Giving Siri The Keys To Your House

We haven’t really covered many hacks having to do with Apple’s newest iPhone feature Siri. We’d bet you’ve already heard a bunch about the voice-activated AI assistant and here’s your chance to give it the keys to your house. This project uses Siri to actuate the deadbolt on an entry door in a roundabout sort of way.

This is really just a Siri frontend for an SMS entry system seen in several other hacks. The inside of the door (pictured above) has a servo motor mounted next to, and attached via connecting rod with, the lever-style deadbolt. An Arduino equipped with a WiFly shield controls that servo and is waiting for instructions from the Google app engine. But wait, they’re not done yet. The app engine connects to a Twilio account which gives it the ability to receive SMS messages. Long story short; Siri is sending a text message that opens the door… eventually. You can seen in the demo after the break that the whole process takes over twenty seconds from the time you first access Siri to the point the bolt is unlocked. Still, it’s a fine first prototype.

There’s a fair amount of expensive hardware on that door which we’d like to see converted to extra feaures. [CC Laan] has already added one other entry method, using a piezo element to listen for a secret knock. But we think there’s room for improvement. Since it’s Internet connected we’d love to see a sensor to monitor how often the door is opened, and perhaps a PIR sensor that would act as a motion-sensing burglar alert system.

Don’t need something this complicated? How about implementing just the secret knock portion of the hack?

Continue reading “Giving Siri The Keys To Your House”

Build Your Own SMS Chatroom

While he was organizing a party, [Mike Seese] hit upon the idea of chatroom that would operate over SMS. Not being content with the ‘reply all’ function, [Mike] built a Group Messaging Service that runs on his home server.

The chat room is initiated by sending a text to a server. Your friends then reply, and the chatroom is then opened. The project was written in C++, and [Mike] put everything on github for your perusal. The software does use libraries from /n software’s IP*Works, but if you have any trouble obtaining those libraries feel free to drop [Mike] a line.

The great thing about this project is the fact that it’s platform independent – as long as a phone can do SMS, it’ll work. Seems like a great thing for those of us still using the old Nokia ‘bar’ phones. An SMS chatroom has been done before but this is the first time we’ve seen a build that will run off your server, and not internet-based services.

While it may not be the best idea for people without unlimited texts on their phone plan, it’s a really great idea and we’re wondering why something like this isn’t available via Google Voice.

Only Losers Text Message On Cellphones – This Guy Carries His Own Teletype For That

Yes, that’s an SMS text messaging device. [Mdziewie] decided that texting on a regular cellphone was too boring and decided to build himself an old-school SMS gateway. Here’s a translated link but the formatting of the forum post gets screwed up with the machine translation.

The device he’s using is an ASR-33 Teletype machine, which was introduced to the market in 1963. It is connected to a GSM modem via an ARM microcontroller, the STM32F103. This chip, along with a few electronic components, let [Mdziewie] design an interface that doesn’t require alteration to the ancient hardware. The forum post linked above includes video of this sending and receiving texts. It’s awesomely loud as it hammers away at the paper, and seems to work as expected.

If you hunger for one of your own but don’t have half-century old equipment there’s still hope. Find yourself a typewriter and turn it into a teletype machine.

SMS Gateway Lets You Twitter By Text Message

[GuySoft] threw together a cellphone-based SMS gateway that allows him to push text messages to Twitter. Once up and running, it can be used by multiple people, either with shared or individual Twitter accounts. At its core, this setup uses the cellphone as a tethered modem on a Linux box. The open source software package, Gammu SMSD, provides hardware hooks for phones running in modem mode. The package is already in the Ubuntu repositories but it runs cross-platform and can be downloaded from the project site. This gave [GuySoft] the ability to script a framework that checks for received SMS messages, compares the incoming phone number for a match on a saved list, then pushes the message from a confirmed number to Twitter via their API.

A web interface is used to register new numbers and associate them with Twitter accounts. On the back-end, [GuySoft’s] own Python script handles the translation of the message. You can download all of the code, and get more insight on setup from the readme file, over at the GitHub repository.

SMS Controlled Irrigation

[Mhkabir] built an irrigation system that communicates by text message. The concept is simple, sending a text message to the system will cause it to switch on the water pump.

Many times we see text message manipulation via the Internet, or using a GSM module. But in this case an inexpensive cellphone is used as the communication interface. The vibration motor has been removed and those connections are monitored to signal incoming messages. Wire leads were soldered to the keypad contacts which allow an Arduino to send out text messages when there is a problem with watering. This isn’t an iron-clad system, as any incoming message will trigger the system and outgoing messages are limited to saved drafts. But a bit of creative programming and we’re sure more functionality could be squeezed out of this hardware.

Keyless Entry Via SMS

[Billy’s] work got new keys which he didn’t want to carry around with him. Instead he built this system to unlock the door via text message. It is based around a Spinneret Web Server which drives a servo motor. He’s rigged up a pipe hanger to add some leverage to the lock’s knob. We’re surprised that the servo has enough power to do the job here but the video after the break shows there’s really no problem. On the communication side of things [Billy] set up Twilio to wait for text messages from an approved list of senders, then used an HTML form to issue the unlock commands to the webserver.

Continue reading “Keyless Entry Via SMS”