easytransfer_serial_arduino_communications_library

Library Makes Arduino To Arduino Serial Communications Dead Simple

When [Bill Porter] works on a project, he says that he typically writes his own NMEA standard communications protocols to fit the job at hand. While it makes things easy to troubleshoot, he admits that his custom protocols are wasteful of both processor time and bandwidth. Binary communications on the other hand are more efficient, but a bit trickier to manage.

To make things easy for the common user, he wrote a library called EasyTransfer which abstracts packetized serial communications between two Arduino boards. The process is pretty simple – all one has to do is define a data structure on both Arduino boards so that they know what sort of data is coming over the wire, and EasyTransfer handles the rest. This allows users to worry less about communications protocols or transmission errors, and focus on their projects instead.

If you’re working on a project and searching for an easy way to get a pair of Arduinos talking, swing by his site and grab the library. It doesn’t get much easier.

Solar-powered Bird House Tweets Using B-Squares

This bird house will tweet to let you know when the occupants pass through the door… err… hole. It uses solar panels to keep a battery topped off, and an Arduino along with an optical sensor which monitors the doorway to pass along an alert via an XBee module.

Admittedly, the video after the break is a bit tongue-in-cheek and doesn’t safeguard against the elements, or even against bird poop. AND it’s basically an advertisement for B-Squares. But we still like it.

These squares use magnetic corners to connect the solar squares together, as well as the squares that house the Arduino and the battery. These magnetic corners also act as the power and ground rails. Two nails have been pounded through the roof of the bird house, acting as a surface to magnetically attach the solar panels to, as well as a conductor to pass the power rails through the wood. It’s no wonder that B-Squares are closing in on  raising five-times their Kickstarter goal.

Continue reading “Solar-powered Bird House Tweets Using B-Squares”

Programming An ATtiny Using An Arduino

attiny

[Scott] is a big fan of the Arduino platform, and he’s not afraid to admit it. It does all the things he needs, but now and again he would like to use something a bit smaller, without all the bells and whistles the Arduino has to offer. He contemplated using an ATtiny for smaller projects, but after looking into what he would need to program the chip under Linux, he could never find the motivation to give it a go.

That all changed when he discovered the Arduino-Tiny project, which aims to bring a limited Arduino IDE to the ATtiny line of microcontrollers. He found the project to be quite useful, so he put together a brief tutorial that walks through everything you need to get started.

The tutorial is fairly straightforward, and even demonstrates how the Arduino can be used as an ISP for the ATtiny, removing the need to purchase a standalone programmer. Be sure to check it out if you are searching for an easy way to get started with ATtiny chips under Linux.

ChipKIT Uno32: First Impressions And Benchmarks

Following Maker Faire, we’ve had a few days to poke around with Digilent’s 32-bit Arduino-compatible chipKIT boards and compiler. We have some initial performance figures to report, along with impressions of the hardware and software.

Continue reading “ChipKIT Uno32: First Impressions And Benchmarks”

Low-cost, Low-bandwidth Wireless Arduino To Android Communications

android_nfc

[Joe] was experimenting with his Arduino when he started thinking about how he could get it to communicate wirelessly with his Android phone. Bluetooth is an option, but it requires some extra components, and Google’s ADK works as well – just not wirelessly.

Instead, he thought it would be neat to see if he could get the two devices to communicate with a simple magnetic coil. He constructed a small 1cm diameter coil, connecting it to the Arduino via a resistor and diode. Using the Android Tricorder app, he was able to locate his phone’s magnetometer, after which he ran some tests to narrow down the best sample rate and frequency range for communications.

To transfer data between the two devices, he had to bit bang the signal in software, since the Arduino’s UART has a lower limit far faster than the 7 bps data rate he was able to achieve with the magnetometer.

While his wireless Arduino to Android bridge isn’t likely to win any awards for throughput, it is a great proof of concept project. Be sure to check out the video below to see his “poor man’s NFC” in action.

Continue reading “Low-cost, Low-bandwidth Wireless Arduino To Android Communications”

Long-range Canon DSLR Remote Video Trigger

canon_60D_remote_video_trigger

Instructables user [Justin] generally enjoyed shooting video with his Canon 60D DSLR, though there was one small problem. The only way that the camera could be remotely triggered to shoot video was via a small IR remote with a paltry 10 foot range. Even worse, the remote had to be pointed directly at the front of the camera to work at all. To remedy the situation, he decided to rig up his own long-range trigger mechanism.

He cobbled together an Arduino with components he had sitting around, mounting it in a project box on top of the camera. A commercially available RF remote shutter release is also mounted on the top of the camera, and wired to the Arduino using a small 2.5mm plug. When he activates the RF remote, it sends a pulse to the Arduino, which in turn sends the appropriate signal to his camera via a small IR LED.

While he readily admits that he could have likely used a much simpler configuration, the Arduino does its job, and he’s quite happy with his solution. We agree with him about the Arduino, but it’s hard to argue with saving money by using components you already have on-hand.

Arduino Based Biofeedback Unit

[Michael Gerstenmayer] has been very successful in developing a biofeedback system. He’s based the build around an Arduino and started adding different chunks to the project to develop a full-featured unit. It can take your temperature (with an IR sensor…. not the hard way), measure your galvanic skin response (conductance), and produce feedback based on this data. Interestingly enough, he built a peripheral vision feedback system based on the glasses frames seen above. They have an LED on each side which are illuminated based on the sensor data.

By using the Arduino’s USB connection the data can also be processed by a PC. [Michael] spent some time working with an open source program called BrainBay to gather and map the stream from the sensors.

We enjoyed reading about the build, but there’s no information about what he’s got planned for this project. That shouldn’t stop you from setting up your own rig and using it as a lie detector, or for the devilish purposes we’ve seen in the past.