|
Project Information
|
JAVATELLSTICKWhat is TellStick? Tellstick is a device that can control several brands of home automation devices. TellStick can be bought from many places, go to telldus.se to get more information or buy the product. What is this project? Advanced OOP Library to communicate with Tellstick, written and made for JAVA. See Getting Started and start developing your own application for home automation.
LinksInfoThis project is in development but functional as we speak. This is a JAVA OOP API wrapper for tellstick device control. You can turn off / on / dim / get names and etc. of devices. This should work with the upcoming Tellstick DUO, and this project will be developed. DevelopmentWhat do you need to develop this API?
Tellstick API Support
The "Apps folder in trunk"To run the jar files in the apps folder (trunk/apps) you will need to take a look at "config.cnf" in the apps folder. Point "telldusFolder" to the telldus installation! That's it! Currently Javatellstick ships with:
Comes with a test example how how to use the API! See: package pkj.no.tellstick.server; Some example code:Getting All devicesArrayList<TellstickDevice> devices = TellstickDevice.getDevices(); Turn off all devices for (TellstickDevice d : devices) {
d.off();
}
|