public class BluetoothUart{
static final String SPP_UUID = "00001101-0000-1000-8000-00805F9B34FB";
static final UUID uuid = UUID.fromString(SPP_UUID);
static final String tag = "BluetoothSPP";
static final boolean D = true;
ListView devList;
ArrayList<String> devices = new ArrayList<String>();
ArrayAdapter<String> devAdapter;
static public BluetoothAdapter btAdapt;
static public BluetoothSocket btSocket;
InputStream btIn = null;
OutputStream btOut;
Context context;
SppServer sppServer;