// Add position interface
Position motePosition = new Position(this);
Random random = new Random(); /* Do not use main random generator for positioning */
motePosition.setCoordinates(random.nextDouble()*100, random.nextDouble()*100, random.nextDouble()*100);
moteInterfaceHandler.addInterface(motePosition);
// Add LED interface
moteInterfaceHandler.addInterface(new MicaZLED(micaZ));
// Add Radio interface
moteInterfaceHandler.addInterface(new MicaZRadio(this));