Cheap And Cheerful Arduino Breadboard Basics

For those less experienced folks looking to move their Arduino projects to more permanent installations, this is just for you! [Martyn] Posted a three part series, VeroBoardUino, over at his blog about moving your Arduino project to a soldered breadboard.

Part one kicks off with the appropriate breadboard requirements, modifications, and a simple 7805 power supply. In the guide [Martyn]  is using strip board, so copper connections will have to be broken using a drill or just by scraping with a hobby knife. Strip board also saves a bit of wire routing in the end. Part two handles the reset button, serial connection and chip socket  (Part 2.5 has also been added to include schematics of the breadboard). Finally, part three installs the crystal and connects your Atmega chip to power and ground.

Next post he will be covering more on the software end of things, burning the bootloader and uploading programs to your new board so stay tuned for updates!

Electronic Bird House Monitoring Goes A Few Steps Further

[Stephen Albers] offers his avian friends a lot of extras with this electronically monitored bird house. This will not only give you a look at what’s going on inside, but provide a source for several other bits of data as well.

First off, a camera has been mounted to the underside of the roof. This looks down on the nesting area and features night vision so that you can peek in any time day or night. He used a WiFi webcam that operates separately from the other electronics.

With the remainder of the setup he is able to harvest temperature and humidity data inside, temperature outside, force on the bottom of the house (although this turned out to be less useful than anticipated), and a in-and-out count for the doorway provided by an IR transmitter/receiver pair.

This offers quite a bit more than the last bird house project we saw. That one also left a lot to be desired as far as protecting the electronics. [Stephen] didn’t skip on that kind of protection. Most of the electronics are housed in an acrylic chamber in the base of the house. The sensors find themselves nestled in plastic enclosures, although some work needs to be done to ensure that the temperature and humidity sensors will still function correctly with this setup.

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”