return pleoBluetoothDongleMACAddress; } private void unloadPleoBehavior() throws InterruptedException { LinkedBlockingQueue<String> commandQueue = new LinkedBlockingQueue<String>(); commandQueue.put("clear"); commandQueue.put("property set 20484 1"); commandQueue.put("property show"); Runnable monitorRunnable = new PleoMonitorRunnable(this,_pleoBluetoothSocket,commandQueue); Thread monitorThread = new Thread(monitorRunnable,"monitorUnloadPleoBehaviourThread"); monitorThread.setDaemon(true); monitorThread.start(); } private void loadPleoBehavior() throws InterruptedException { LinkedBlockingQueue<String> commandQueue = new LinkedBlockingQueue<String>();