|
| 1 | +/** |
| 2 | + * A BLE client example that is rich in capabilities. |
| 3 | + * There is a lot new capabilities implemented. |
| 4 | + * author unknown |
| 5 | + * updated by chegewara |
| 6 | + */ |
| 7 | + |
| 8 | +#include "BLEDevice.h" |
| 9 | +//#include "BLEScan.h" |
| 10 | + |
| 11 | +// The remote service we wish to connect to. |
| 12 | +static BLEUUID serviceUUID("4fafc201-1fb5-459e-8fcc-c5c9c331914b"); |
| 13 | +// The characteristic of the remote service we are interested in. |
| 14 | +static BLEUUID charUUID("beb5483e-36e1-4688-b7f5-ea07361b26a8"); |
| 15 | + |
| 16 | +static boolean doConnect = false; |
| 17 | +static boolean connected = false; |
| 18 | +static boolean doScan = false; |
| 19 | +static BLERemoteCharacteristic* pRemoteCharacteristic; |
| 20 | +static BLEAdvertisedDevice* myDevice; |
| 21 | + |
| 22 | +static void notifyCallback( |
| 23 | + BLERemoteCharacteristic* pBLERemoteCharacteristic, |
| 24 | + uint8_t* pData, |
| 25 | + size_t length, |
| 26 | + bool isNotify) { |
| 27 | + Serial.print("Notify callback for characteristic "); |
| 28 | + Serial.print(pBLERemoteCharacteristic->getUUID().toString().c_str()); |
| 29 | + Serial.print(" of data length "); |
| 30 | + Serial.println(length); |
| 31 | + Serial.print("data: "); |
| 32 | + Serial.println((char*)pData); |
| 33 | +} |
| 34 | + |
| 35 | +class MyClientCallback : public BLEClientCallbacks { |
| 36 | + void onConnect(BLEClient* pclient) { |
| 37 | + } |
| 38 | + |
| 39 | + void onDisconnect(BLEClient* pclient) { |
| 40 | + connected = false; |
| 41 | + Serial.println("onDisconnect"); |
| 42 | + } |
| 43 | +}; |
| 44 | + |
| 45 | +bool connectToServer() { |
| 46 | + Serial.print("Forming a connection to "); |
| 47 | + Serial.println(myDevice->getAddress().toString().c_str()); |
| 48 | + |
| 49 | + BLEClient* pClient = BLEDevice::createClient(); |
| 50 | + Serial.println(" - Created client"); |
| 51 | + |
| 52 | + pClient->setClientCallbacks(new MyClientCallback()); |
| 53 | + |
| 54 | + // Connect to the remove BLE Server. |
| 55 | + pClient->connect(myDevice); // if you pass BLEAdvertisedDevice instead of address, it will be recognized type of peer device address (public or private) |
| 56 | + Serial.println(" - Connected to server"); |
| 57 | + |
| 58 | + // Obtain a reference to the service we are after in the remote BLE server. |
| 59 | + BLERemoteService* pRemoteService = pClient->getService(serviceUUID); |
| 60 | + if (pRemoteService == nullptr) { |
| 61 | + Serial.print("Failed to find our service UUID: "); |
| 62 | + Serial.println(serviceUUID.toString().c_str()); |
| 63 | + pClient->disconnect(); |
| 64 | + return false; |
| 65 | + } |
| 66 | + Serial.println(" - Found our service"); |
| 67 | + |
| 68 | + |
| 69 | + // Obtain a reference to the characteristic in the service of the remote BLE server. |
| 70 | + pRemoteCharacteristic = pRemoteService->getCharacteristic(charUUID); |
| 71 | + if (pRemoteCharacteristic == nullptr) { |
| 72 | + Serial.print("Failed to find our characteristic UUID: "); |
| 73 | + Serial.println(charUUID.toString().c_str()); |
| 74 | + pClient->disconnect(); |
| 75 | + return false; |
| 76 | + } |
| 77 | + Serial.println(" - Found our characteristic"); |
| 78 | + |
| 79 | + // Read the value of the characteristic. |
| 80 | + if(pRemoteCharacteristic->canRead()) { |
| 81 | + std::string value = pRemoteCharacteristic->readValue(); |
| 82 | + Serial.print("The characteristic value was: "); |
| 83 | + Serial.println(value.c_str()); |
| 84 | + } |
| 85 | + |
| 86 | + if(pRemoteCharacteristic->canNotify()) |
| 87 | + pRemoteCharacteristic->registerForNotify(notifyCallback); |
| 88 | + |
| 89 | + connected = true; |
| 90 | +} |
| 91 | +/** |
| 92 | + * Scan for BLE servers and find the first one that advertises the service we are looking for. |
| 93 | + */ |
| 94 | +class MyAdvertisedDeviceCallbacks: public BLEAdvertisedDeviceCallbacks { |
| 95 | + /** |
| 96 | + * Called for each advertising BLE server. |
| 97 | + */ |
| 98 | + void onResult(BLEAdvertisedDevice advertisedDevice) { |
| 99 | + Serial.print("BLE Advertised Device found: "); |
| 100 | + Serial.println(advertisedDevice.toString().c_str()); |
| 101 | + |
| 102 | + // We have found a device, let us now see if it contains the service we are looking for. |
| 103 | + if (advertisedDevice.haveServiceUUID() && advertisedDevice.isAdvertisingService(serviceUUID)) { |
| 104 | + |
| 105 | + BLEDevice::getScan()->stop(); |
| 106 | + myDevice = new BLEAdvertisedDevice(advertisedDevice); |
| 107 | + doConnect = true; |
| 108 | + doScan = true; |
| 109 | + |
| 110 | + } // Found our server |
| 111 | + } // onResult |
| 112 | +}; // MyAdvertisedDeviceCallbacks |
| 113 | + |
| 114 | + |
| 115 | +void setup() { |
| 116 | + Serial.begin(115200); |
| 117 | + Serial.println("Starting Arduino BLE Client application..."); |
| 118 | + BLEDevice::init(""); |
| 119 | + |
| 120 | + // Retrieve a Scanner and set the callback we want to use to be informed when we |
| 121 | + // have detected a new device. Specify that we want active scanning and start the |
| 122 | + // scan to run for 5 seconds. |
| 123 | + BLEScan* pBLEScan = BLEDevice::getScan(); |
| 124 | + pBLEScan->setAdvertisedDeviceCallbacks(new MyAdvertisedDeviceCallbacks()); |
| 125 | + pBLEScan->setInterval(1349); |
| 126 | + pBLEScan->setWindow(449); |
| 127 | + pBLEScan->setActiveScan(true); |
| 128 | + pBLEScan->start(5, false); |
| 129 | +} // End of setup. |
| 130 | + |
| 131 | + |
| 132 | +// This is the Arduino main loop function. |
| 133 | +void loop() { |
| 134 | + |
| 135 | + // If the flag "doConnect" is true then we have scanned for and found the desired |
| 136 | + // BLE Server with which we wish to connect. Now we connect to it. Once we are |
| 137 | + // connected we set the connected flag to be true. |
| 138 | + if (doConnect == true) { |
| 139 | + if (connectToServer()) { |
| 140 | + Serial.println("We are now connected to the BLE Server."); |
| 141 | + } else { |
| 142 | + Serial.println("We have failed to connect to the server; there is nothin more we will do."); |
| 143 | + } |
| 144 | + doConnect = false; |
| 145 | + } |
| 146 | + |
| 147 | + // If we are connected to a peer BLE Server, update the characteristic each time we are reached |
| 148 | + // with the current time since boot. |
| 149 | + if (connected) { |
| 150 | + String newValue = "Time since boot: " + String(millis()/1000); |
| 151 | + Serial.println("Setting new characteristic value to \"" + newValue + "\""); |
| 152 | + |
| 153 | + // Set the characteristic's value to be the array of bytes that is actually a string. |
| 154 | + pRemoteCharacteristic->writeValue(newValue.c_str(), newValue.length()); |
| 155 | + }else if(doScan){ |
| 156 | + BLEDevice::getScan()->start(0); // this is just eample to start scan after disconnect, most likely there is better way to do it in arduino |
| 157 | + } |
| 158 | + |
| 159 | + delay(1000); // Delay a second between loops. |
| 160 | +} // End of loop |
0 commit comments