// ejecuta la aplicacion 3
 @Override
 public void onButtonG2Clicked(ActionEvent e) {
   thApp3 = new Thread(new Aplicacion3(xbeeC));
   thApp3.start();
 }
 // Ejecuta la aplicacion 1
 @Override
 public void onButtonG0Clicked(ActionEvent e) {
   thApp1 = new Thread(new Aplicacion1(xbeeC));
   thApp1.start();
 }