New Bluetooth App

I created a new app and library for bluetooth control of your Arduino projects. Using only a few lines of code on the arduino you can create graphical interfaces. There is no configuration or programming of the android device necessary, your project will instantly work with any android device. Here is a screen shot and the code that generates the interface:

void setup()
{
  redSlider = new BDSlider("Red");
  greenSlider = new BDSlider("Green");
  blueSlider = new BDSlider("Blue");
  onButton = new BDBTN("On");
  offButton = new BDBTN("Off");
  myDentist = new BlueDentist(9600);
  myDentist->add(redSlider);
  myDentist->add(greenSlider);
  myDentist->add(blueSlider);
  myDentist->add(onButton);
  myDentist->add(offButton);
}

The applications are endless but R/C vehicles, home automation, telemetry. HC-05 and HC-06 modules are cheap enough and easy enough to use that this suitable for anything you might need a display and a few buttons for. I created a tutorial introducing how to use it at http://www.instructables.com/id/Arduino-from-Android-over-Bluetooth/. The rest of the documentation and downloads are at http://avrthing.com/toothfairy.

Please check it out and give me your feedback. I intend to add more features, but I need the feedback to decide what to work on.