How to build a low cost Bluetooth relay

Bluetooth iconMeanwhile there are lots of solutions for home automation in the market. However the most of them share one flaw – their price. But blessedly there is Youtube where you can find a video for each topic…
On Youtube I came across a clever tinkerer named Lou, who shows how you can build a low cost Bluetooth relay. I think this is really cool, because there are a many application areas. You could open your garage door, switch lights on and off or unlock an electric lock. To build up one of these Bluetooth relays you must not even be a technical genius, because the use of a soldering iron is sufficient. Knowledge in programming or microcontroller-technology isn’t necessary.
For the Bluetooth relay you need only one transistor and a Bluetooth headset […]

How to run a full-value Linux on your Android device

I know, why I love my Android smartphone. It is open, flexible and the opportunities to use it seem to be endless. In times companies don’t let me choose, what software I can use to I transfer my music onto the device (Apple – iTunes), I, as an Android user, can ask myself the question: “Should I install the new Cyanogen Mod or straigt way a full-value Linux distribution on my device today? “.
Yes, you heard correctly, a full Linux distribution on your Android device. Ruan from Androidclone managed it and shares his knowledge gladly with all Android fans. At Androidclone board you can find a detailed tutorial, how to run Ubuntu 10.10 on your Android device.
It can be used parallel to Android as it is launched from […]

How to run Android on PC

Android unter WindowsIn the following article I’ll show you how to run Android in a virtual machine on your Windows. The post may appear relatively long at first glance, but actually setting up is really easy. So don’t be daunted by the article’s lenght.
If you reach the end of the article and did all steps correctly, you can work with Windows and Android on the same machine at the same time.  And now blathered enough, let’s go!
 
What do we need?

Microsoft Virtual PC (Download) or VirtualBox (Download)
Android x86 iso-file (Download)

At first you have to install Microsoft’s Virtual PC. Therefore you have to download it (use the link from the above “What do we need?”-list ). But wait – maybe you can spare yourself the download and installation. Take a look at your […]

How to easily record from a webcam in C#

What is the easiest way to use a webcam in C# and record from it? If you search for an answer to this question you’ll find a lot of articles in the internet but most of them are many pages long and very confusing. However that isn’t really necessary. With the aid of the AForge.NET library you can do the given task really easy. Just a few lines of C# code are enough to drive your webcam and capture images from it. In the following I’ll show you how to handle the AForge library.
What do you need?

The AForge.Video.dll together with the AForge.Video.DirectShow.dll
Both dlls can be found on the AForge website inside the “(libs only)” zip-archive.
A simple winforms-application, with a picturebox on its gui
A webcam. For example this one:No products found.
Basic C#-knowledge. If not exists, read this: No products found.

At first you have to reference the both dlls and write the using-statements […]