Advertisement
iderrington

SolderCore Simple Bluetooth UI Stuff

May 25th, 2013
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 12.64 KB | None | 0 0
  1. /*
  2.  * Simple demo app that connects a Bluetooth enabled Android device
  3.  * to a BT module and sends simple string commands
  4.  *
  5.  * Author: Iain Derrington (@IDerrington)
  6.  * http://kandi-electronics.co.uk
  7.  * http://soldercore.com (@SolderCore)
  8.  *
  9.  * License: Car & Motorbike both clean.
  10.  *
  11.  * Version: LOL
  12.  *
  13.  */
  14.  
  15. package com.kandi.soldercorebt2;
  16.  
  17. import java.util.ArrayList;
  18. import java.util.Set;
  19.  
  20. import android.os.Bundle;
  21. import android.os.Handler;
  22. import android.os.Message;
  23. import android.app.Activity;
  24. import android.app.ProgressDialog;
  25. import android.bluetooth.BluetoothAdapter;
  26. import android.bluetooth.BluetoothDevice;
  27. import android.content.BroadcastReceiver;
  28. import android.content.Context;
  29. import android.content.Intent;
  30. import android.content.IntentFilter;
  31. import android.util.Log;
  32. import android.view.Menu;
  33. import android.view.View;
  34. import android.view.View.OnClickListener;
  35. import android.view.Window;
  36. import android.widget.AdapterView;
  37. import android.widget.ArrayAdapter;
  38. import android.widget.Button;
  39. import android.widget.ListView;
  40. import android.widget.TextView;
  41. import android.widget.Toast;
  42.  
  43.  
  44. public class MainActivity extends Activity {
  45.     public final static String TAG =  MainActivity.class.getName();
  46.    
  47.     public enum BtState{
  48.         DISCONNECTED, CONNNECTED, DISCOVERING
  49.     };
  50.    
  51.     /* Bluetooth hardware*/
  52.     BluetoothAdapter btAdapter;
  53.     BluetoothDevice btDevice;
  54.    
  55.     /*btConnection manager object*/
  56.     BTConnection mBluetooth;
  57.    
  58.     /*Android view related stuff */
  59.     ListView btListView;
  60.     ArrayAdapter<String> btDevicesAdaptor;
  61.     ArrayList<String> pairedDevices;
  62.     Button btnScan;
  63.     Button btnSend;
  64.     Button btnLedon;
  65.     Button btnLedOff;
  66.     TextView txtSend;
  67.     TextView txtStatus;
  68.     ProgressDialog progressBar;
  69.    
  70.     /* State Management*/
  71.     BtState btState;
  72.    
  73.    
  74.  
  75.     /*
  76.      * Messages from the Bluetooth Manager should come in here
  77.      */
  78.     private static Handler mHandler = new Handler(){
  79.         @Override
  80.         public void handleMessage(Message message){
  81.             Log.d(TAG, "In Message Handler");  
  82.         }
  83.     };
  84.    
  85.     /*
  86.      *  Begin here.
  87.      */
  88.     @Override
  89.     protected void onCreate(Bundle savedInstanceState) {
  90.         super.onCreate(savedInstanceState);
  91.        
  92.         requestWindowFeature(Window.FEATURE_INDETERMINATE_PROGRESS);
  93.        
  94.         setContentView(R.layout.activity_main);
  95.        
  96.         // Get a reference to the devices Bluetooth hardware
  97.         btAdapter = BluetoothAdapter.getDefaultAdapter();
  98.        
  99.         if (btAdapter == null){
  100.             // Bluetooth not supported.
  101.             finish();
  102.         }
  103.        
  104.     }
  105.     @Override
  106.     protected void onResume(){
  107.         super.onResume();
  108.         setUpUI();
  109.     }
  110.    
  111.     @Override
  112.     protected void onPause() {
  113.         super.onPause();
  114.         if (mBluetooth!=null){
  115.             mBluetooth.cancel();
  116.         }
  117.         if (btRegReciever != null){
  118.             unregisterReceiver(btRegReciever);
  119.         }
  120.     }
  121.  
  122. /*****************************************************
  123.  * Called by onCreate.
  124.  * Tries to enable the Bluetooth hardware (if not already enabled).
  125.  * If already enabled initiates a BT scan
  126.  *
  127.  ****************************************************/
  128.     private void setUpUI() {
  129.         btDevicesAdaptor = new ArrayAdapter<String>(getApplicationContext(), android.R.layout.simple_list_item_1);
  130.         pairedDevices = new ArrayList<String>();
  131.         btListView = (ListView)findViewById(R.id.listView1);
  132.         btListView.setAdapter(btDevicesAdaptor);
  133.         btnScan = (Button)findViewById(R.id.btnScan);
  134.         btnSend = (Button)findViewById(R.id.btnSendData);
  135.         btnLedOff = (Button)findViewById(R.id.btnLedOff);
  136.         btnLedon = (Button)findViewById(R.id.btnLedOn);
  137.         txtStatus  = (TextView) findViewById(R.id.txtUpdate);
  138.        
  139.         // if not enabled. Enable the BT adapter
  140.         if (!btAdapter.isEnabled()){
  141.             Log.d(TAG, "BT Adapter not enabled... firing ACTION_REQUEST_ENABLE");
  142.             Intent intent =  new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
  143.             startActivityForResult(intent, 0);
  144.         }else{
  145.            
  146.         }
  147.        
  148.         // Listen out for a Bluetooth broadcast
  149.         IntentFilter intentFilter = new IntentFilter(BluetoothAdapter.ACTION_SCAN_MODE_CHANGED);
  150.         registerReceiver(btRegReciever, intentFilter);
  151.        
  152.         /*
  153.          * Configure UI elements for default state.
  154.          */
  155.             btnSend.setEnabled(false);
  156.             btnLedOff.setEnabled(false);
  157.             btnLedon.setEnabled(false);
  158.             btnScan.setEnabled(true);
  159.             btnScan.setText("Scan");
  160.             btDevicesAdaptor.clear();
  161.             txtStatus.setText("Bluetooth Status: Disconnected");
  162.             setProgressBarIndeterminateVisibility(false);
  163.  
  164.             btState = BtState.DISCONNECTED;
  165.        
  166.         /*
  167.          * When user selects an item on the list lets try to connect to it.
  168.          * If it successfully connects update the connection state.
  169.          * The broadcast receiver above should also detect a device connection and update the UI
  170.          */
  171.         btListView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
  172.              
  173.              public void onItemClick(AdapterView<?> parentAdapter, View view, int position,
  174.                                      long id) {      
  175.                  
  176.                  btAdapter.cancelDiscovery();
  177.                  txtStatus.setText("Bluetooth Status: Connecting...");
  178.                  
  179.                  // We know the View is a TextView so we can cast it
  180.                  TextView clickedView = (TextView) view;
  181.                  
  182.                  String devAddress = (String) clickedView.getText();
  183.                  String[] parts = devAddress.split("\n");
  184.                  parts = parts[1].split(" ");
  185.                  
  186.                  btDevice =  btAdapter.getRemoteDevice(parts[0]);
  187.                  
  188.                  mBluetooth = new BTConnection(btAdapter, btDevice, mHandler);
  189.                  mBluetooth.start();
  190.                  
  191.              }
  192.         });
  193.        
  194.         /*
  195.          * Kicks off a  scan when user presses button.
  196.          */
  197.         btnScan.setOnClickListener(new OnClickListener() {
  198.             @Override
  199.             public void onClick(View v) {
  200.                 if (btState == BtState.CONNNECTED){
  201.                     if (mBluetooth != null){
  202.                         setProgressBarIndeterminateVisibility(true);
  203.                         txtStatus.setText("Bluetooth Status: Disconnecting");
  204.                         btnScan.setText("Wait..");
  205.                         mBluetooth.cancel();
  206.                     }
  207.                 }
  208.                 else if (btState == BtState.DISCOVERING){
  209.                     // Already scanning so do nothing
  210.                 }
  211.                 else{
  212.                     btScan();
  213.                 }
  214.             }});
  215.        
  216.        
  217.         /*
  218.          * Commands send to the SolderCore
  219.          */
  220.         btnSend.setOnClickListener(new OnClickListener() { 
  221.             @Override
  222.             public void onClick(View v) {
  223.                 if (btState == BtState.CONNNECTED) {
  224.                     mBluetooth.write("Hello");
  225.                 }
  226.             }});
  227.        
  228.         btnLedOff.setOnClickListener(new OnClickListener() {
  229.             @Override
  230.             public void onClick(View v) {
  231.                 // TODO Auto-generated method stub
  232.                 if (btState == BtState.CONNNECTED) {
  233.                     mBluetooth.write("LED OFF");
  234.                 }
  235.             }});
  236.        
  237.         btnLedon.setOnClickListener(new OnClickListener() {
  238.             @Override
  239.             public void onClick(View v) {
  240.                 // TODO Auto-generated method stub
  241.                 if (btState == BtState.CONNNECTED) {
  242.                     mBluetooth.write("LED ON");
  243.                 }
  244.             }});
  245.     }
  246.    
  247.  
  248.  
  249. /*
  250.  *  Call this function when the Bluetooth adapter is enabled to start a BT scan
  251.  */
  252.     private void btScan() {
  253.        
  254.         //Empty the adaptor or else duplicates will appear
  255.         btDevicesAdaptor.clear();
  256.        
  257.         setProgressBarIndeterminateVisibility(true);
  258.         btnScan.setEnabled(false);
  259.         txtStatus.setText("Bluetooth Status: Scanning...");
  260.         //Toast.makeText(getApplicationContext(), "Scanning for devices...",    Toast.LENGTH_LONG).show();
  261.              
  262.         // Get a list of devices previously paired to
  263.         Set<BluetoothDevice> psetDev = btAdapter.getBondedDevices();
  264.                    
  265.         // Add name and address to a list
  266.         for (BluetoothDevice device : psetDev) {
  267.         // Add the name and address to an array adapter to show in a ListView
  268.             pairedDevices.add(device.getName() + "\n" + device.getAddress());
  269.         }
  270.                    
  271.         // Adapter is on. Start discovery
  272.         if(btAdapter.startDiscovery()){
  273.             // and resister various Bluetooth broadcast messages with our broadcast receiver
  274.             registerReceiver(btRegReciever, new IntentFilter(BluetoothDevice.ACTION_FOUND));
  275.             registerReceiver(btRegReciever, new IntentFilter(BluetoothAdapter.ACTION_DISCOVERY_FINISHED));
  276.             registerReceiver(btRegReciever, new IntentFilter(BluetoothDevice.ACTION_ACL_CONNECTED));
  277.             registerReceiver(btRegReciever, new IntentFilter(BluetoothDevice.ACTION_ACL_DISCONNECTED));
  278.             registerReceiver(btRegReciever, new IntentFilter(BluetoothDevice.ACTION_ACL_DISCONNECT_REQUESTED));
  279.         }
  280.        
  281.     }
  282.  
  283.     @Override
  284.     public boolean onCreateOptionsMenu(Menu menu) {
  285.         // Inflate the menu; this adds items to the action bar if it is present.
  286.         getMenuInflater().inflate(R.menu.main, menu);
  287.         return true;
  288.     }
  289. /*
  290.  * Broadcast Receiver that listens for the following:
  291.  *
  292.  * BluetoothDevice.ACTION_FOUND
  293.  * BluetoothAdapter.ACTION_DISCOVERY_FINISHED)
  294.  * BluetoothDevice.ACTION_ACL_CONNECTED
  295.  */
  296.     private final BroadcastReceiver btRegReciever = new BroadcastReceiver() {
  297.        
  298.         @Override
  299.         public void onReceive(Context arg0, Intent intent) {
  300.             String action = intent.getAction();
  301.             String toastText;
  302.             //String prevStateExtra = btAdapter.EXTRA_PREVIOUS_STATE;
  303.             String stateExtra = BluetoothAdapter.EXTRA_STATE;
  304.             int state = intent.getIntExtra(stateExtra,-1);
  305.             //intent.getIntExtra(prevStateExtra, -1);
  306.            
  307.             Log.d(TAG, "BroadCast Reciver (Action):" + action);
  308.            
  309.             /*
  310.              * Handle Bluetooth Adapter state and messages
  311.              */
  312.             switch(state){
  313.                 case(BluetoothAdapter.STATE_TURNING_ON):
  314.                 {
  315.                     toastText = "Bluetooth Turning On";
  316.                     break;
  317.                 }
  318.                 case(BluetoothAdapter.STATE_ON):
  319.                 {
  320.                     toastText = "Bluetooth On";
  321.                     Toast.makeText(MainActivity.this,toastText, Toast.LENGTH_SHORT).show();
  322.                     break;
  323.                 }
  324.                 case (BluetoothAdapter.STATE_TURNING_OFF):
  325.                 {
  326.                     toastText = "Bluetooth Turning Off";
  327.                     Toast.makeText(MainActivity.this,toastText, Toast.LENGTH_SHORT).show();
  328.                     break;
  329.                 }
  330.                 case (BluetoothAdapter.STATE_OFF):
  331.                 {
  332.                     toastText = "Bluetooth Off";
  333.                     Toast.makeText(MainActivity.this,toastText, Toast.LENGTH_SHORT).show();
  334.                     break;
  335.                 }  
  336.             }
  337.            
  338.             if(BluetoothAdapter.ACTION_DISCOVERY_FINISHED.equals(action)){
  339.                 btnScan.setEnabled(true);
  340.                 setProgressBarIndeterminateVisibility(false);
  341.                 txtStatus.setText("Bluetooth Status: Not Connected");
  342.                 //Toast.makeText(getApplicationContext(), "Discovery Complete", Toast.LENGTH_SHORT).show();
  343.             }
  344.            
  345.             /*
  346.              * Handle Bluetooth DEVICE messages
  347.              */
  348.             if (BluetoothDevice.ACTION_ACL_CONNECTED.equals(action)) {
  349.                  // Get the BluetoothDevice object from the Intent
  350.                 BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
  351.                 String deviceName = device.getName();
  352.                 //toastText = "Connected to "+ deviceName;
  353.                 //Toast.makeText(MainActivity.this,toastText, Toast.LENGTH_SHORT).show();
  354.                 txtStatus.setText("Bluetooth Status: Connected (" + deviceName +")");
  355.                 btnSend.setEnabled(true);
  356.                 btnLedOff.setEnabled(true);
  357.                 btnLedon.setEnabled(true);
  358.                 btState = BtState.CONNNECTED;
  359.                 btDevicesAdaptor.clear();
  360.                 btnScan.setText("Disconnect");
  361.             }
  362.            
  363.             if (BluetoothDevice.ACTION_ACL_DISCONNECTED.equals(action) || BluetoothDevice.ACTION_ACL_DISCONNECT_REQUESTED.equals(action) ) {
  364.                  // Get the BluetoothDevice object from the Intent
  365.                 setProgressBarIndeterminateVisibility(false);
  366.                 BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
  367.                 String deviceName = device.getName();
  368.                 toastText = "Disconnected from "+ deviceName;
  369.                 Toast.makeText(MainActivity.this,toastText, Toast.LENGTH_SHORT).show();
  370.                 txtStatus.setText("Bluetooth Status: Disconnected");
  371.                 btnScan.setText("Scan");
  372.                 btnSend.setEnabled(false);
  373.                 btnLedOff.setEnabled(false);
  374.                 btnLedon.setEnabled(false);
  375.                 btState = BtState.DISCONNECTED;
  376.             }
  377.            
  378.             if (BluetoothDevice.ACTION_FOUND.equals(action)) {
  379.                 // Get the BluetoothDevice object from the Intent
  380.                 BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
  381.                
  382.                 for (int i = 0; i< pairedDevices.size(); i++){
  383.                     if (pairedDevices.get(i).contains( device.getName() ) ){
  384.                         btDevicesAdaptor.add(device.getName() + "\n" + device.getAddress() + " PAIRED");
  385.                         //toastText = "Found: " + device.getName() + "Already Paired!";
  386.                         //Toast.makeText(MainActivity.this,toastText, Toast.LENGTH_SHORT).show();
  387.                         return;  
  388.                     }
  389.                 }
  390.                
  391.                 // Add the name and address to an array adapter to show in a ListView
  392.                 btDevicesAdaptor.add(device.getName() + "\n" + device.getAddress());
  393.                 toastText = "Found: " + device.getName();
  394.                 //Toast.makeText(MainActivity.this,toastText, Toast.LENGTH_SHORT).show();
  395.             }
  396.     }
  397. }; 
  398. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement