Search |
||
Falling In Love With My Sentilla Perk KitPosted by brunogh on August 18, 2008 at 8:30 PM PDT
I just received my Sentilla Perk (Pervasive Computing Kit) some hours ago (Picture 1). I want to thank Sentilla so much and, in special, Cheryl Hall, for being very attentive. If you don't know Sentilla yet, it wons the Duke Awards in Pervasive Solutions category this year at JavaOne! I have installed my kit on Windows Vista, it is described in the box that Windows XP is required. Anyway, it worked and it seems there is a beta version for Linux and Mac OS X too. The dev forum in the previous link needs registering, so be sure you create an user before. Picture 1. The kit The basic steps to start are (from the instructions that came in the kit):
Sentilla Work is based on Eclipse (Picture 2), so you will not have problems to start developing. There is a Welcome page that shows how to start and how to install Sentilla Work Mote Project, which contains a lot of useful demos. ![]() Picture 2. Sentilla Work Sentilla Perk Kit is a CLDC-compliant Java ME-based platform (CLDC 1.1). Because talk is cheap, here it goes a very simple Hello World based on a code available on Mote Project. The snippet is very simple and blinks the red LED every one second. As you can see, there is no MIDP lifecycle and it defines its own libraries. The deploy on the motes are done very easy in the IDE using the gateway. The application running is in the Picture 1 as well.
import com.sentilla.system.Leds;
import com.sentilla.system.LedsDriver;
public class MoteBlinkRed {
public static void motemain() throws InterruptedException {
Leds leds = LedsDriver.create();
while (true) {
leds.toggle(1);
Thread.sleep(1000);
}
}
}
Get started too! Keep an eye here, my fun is guaranteed until the end of the year! :) Cheers,Bruno Ghisi »
Related Topics >>
Mobile and Embedded Comments
Comments are listed in date ascending order (oldest first)
Submitted by brunogh on Tue, 2008-08-19 05:55.
UPDATE: Sentilla is launching a developer portal: http://labs.sentilla.com
Submitted by dxxvi on Tue, 2008-08-19 08:33.
What's the difference between this Sentilla and the Sun Spot Java Development Kit?
Submitted by brunogh on Tue, 2008-08-19 09:26.
Hello dxxvi , maybe this interview with Sentilla CTO made at JavaOne (http://java.sun.com/javaone/sf/2008/articles/gen_sentilla.jsp) can help. They bring pervasive computing, but there are differences in both devices, like SPOTs are open source, uses IMP profile running on a Squawk (https://squawk.dev.java.net/) , etc. Both are amazing to create those fun stuff!
Submitted by tirulegui on Tue, 2008-08-19 13:29.
The main difference between Sentilla Perk Kit and Sun Spot is price. The Perk Kit is $199 while SunSpot is $750.
During JavaOne, Janice Heiss wrote an article referencing the two (http://java.sun.com/javaone/sf/2008/articles/gen_sentilla.jsp)
Submitted by erickson on Tue, 2008-08-19 13:49.
If it's "Hello, World!" shouldn't it actually say "HELLO WORLD" (in Morse code)? :) That would be cool.
Submitted by brunogh on Tue, 2008-08-19 13:58.
That is definitely a huge difference, forgot to mention. But, also, SPOTs accept proposals and gave kits for free: https://www.sunspotworld.com/proposals
Submitted by brunogh on Tue, 2008-08-19 14:03.
erickson: Hello World is he idea to set up the whole environment and create something. Morse code will work, but I probably would take some time to understand it.
Submitted by jim_weaver on Tue, 2008-08-19 16:42.
Very cool, Bruno! So, are you going to write a cool JavaFX app for it?
Thanks,
Jim Weaver
http://JavaFXpert.com
Submitted by brunogh on Tue, 2008-08-19 18:29.
Thanks Jim! Probably will try something soon! :) Cheers!
Submitted by pmac72 on Wed, 2008-08-20 14:53.
I'm interested in information about the Linux beta.
Your link leads to a registered user only forum. I need to have a kit to register just to read the forum.
Could you perhaps post some info? I did search their site, but got nothing.
TIA
Submitted by brunogh on Wed, 2008-08-20 15:11.
Hello TIA, I am sure you can register for free on http://dev.sentilla.com/forums/ucp.php?mode=register. If you don´t have the MAC address, just send an email to info@sentilla.com . I will try the Linux version as soon as I can too. Thanks.
Submitted by pmac72 on Wed, 2008-08-20 15:56.
Right you are. I just had to fill in something in the MAC address field, there was no validation done on it.
Submitted by hlavalle on Mon, 2008-08-25 19:01.
Bruno, I went to look at the the Sun SPOT Open Grant Program you mentioned. But it is not for us, from Brazil, as it is not an eligible country.
Submitted by brunogh on Mon, 2008-08-25 20:04.
Hello hlavalle, that is very weird, because I have heard about some brazilian people that got the project approved. Try to send an email to them. Thanks.
Submitted by jpolastre on Tue, 2008-09-16 23:20.
Email me with the application you intend to create and you will get a free Perk kit.
|
||
|
|