public void stop() {
   remoteCtrl.stop();
   timerThread = null;
 }
  public void start() {
    remoteCtrl.start();

    timerThread = new Thread(this);
    timerThread.start();
  }