Advertisement
pleasedontcode

"BLE Client" rev_01

Feb 11th, 2025
255
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /********* Pleasedontcode.com **********
  2.  
  3.     Pleasedontcode thanks you for automatic code generation! Enjoy your code!
  4.  
  5.     - Terms and Conditions:
  6.     You have a non-exclusive, revocable, worldwide, royalty-free license
  7.     for personal and commercial use. Attribution is optional; modifications
  8.     are allowed, but you're responsible for code maintenance. We're not
  9.     liable for any loss or damage. For full terms,
  10.     please visit pleasedontcode.com/termsandconditions.
  11.  
  12.     - Project: "BLE Client"
  13.     - Source Code NOT compiled for: ESP32 DevKit V1
  14.     - Source Code created on: 2025-02-11 18:03:14
  15.  
  16. ********* Pleasedontcode.com **********/
  17.  
  18. /****** SYSTEM REQUIREMENTS *****/
  19. /****** SYSTEM REQUIREMENT 1 *****/
  20.     /* **ESP32 BLE Client (Stable & Crash-Free)**    - */
  21.     /* Scans for `PERIPH`, connects when found, auto- */
  22.     /* reconnects if lost.    - Separate tasks for BLE */
  23.     /* connection & Modbus RTU handling.    - FreeRTOS, */
  24.     /* mutexes, watchdogs, and memory tracking to prevent */
  25.     /* crased */
  26. /****** END SYSTEM REQUIREMENTS *****/
  27.  
  28. /* START CODE */
  29.  
  30. /****** DEFINITION OF LIBRARIES *****/
  31. #include <ArduinoBLE.h> //https://github.com/arduino-libraries/ArduinoBLE
  32. #include <DHT.h>    //https://github.com/adafruit/DHT-sensor-library
  33. #include <BLEDevice.h> // Added for BLE functionality
  34.  
  35. /****** FUNCTION PROTOTYPES *****/
  36. void setup(void);
  37. void loop(void);
  38.  
  39. /***** DEFINITION OF DIGITAL INPUT PINS *****/
  40. const uint8_t myDHT22_DHT22_DOUT_PIN_D4     = 4;
  41.  
  42. // Define UUIDs for BLE service and characteristics
  43. static BLEUUID serviceUUID("6E400001-B5A3-F393-E0A9-E50E24DCCA9E");
  44. static BLEUUID charUUID("6e400003-b5a3-f393-e0a9-E50E24DCCA9E");
  45. static BLEUUID rxUUID("6e400002-b5a3-f393-e0A9-E50E24DCCA9E");
  46.  
  47. // Global variables
  48. static bool connected = false;
  49. static BLEClient* pClient = nullptr;
  50. static BLERemoteService* pRemoteService = nullptr;
  51. static BLERemoteCharacteristic* pRemoteCharacteristic = nullptr;
  52. static BLERemoteCharacteristic* pRemoteRxCharacteristic = nullptr;
  53. static BLEAdvertisedDevice* myDevice = nullptr;
  54. static BLEScan* pBLEScan = nullptr;
  55.  
  56. // BLE Client callback
  57. class MyClientCallback : public BLEClientCallbacks {
  58.     void onConnect(BLEClient* pclient) {
  59.         Serial.println("Connected to peripheral.");
  60.     }
  61.     void onDisconnect(BLEClient* pclient) {
  62.         connected = false;
  63.         Serial.println("Disconnected from peripheral.");
  64.     }
  65. };
  66.  
  67. // Task: Scan for BLE devices and connect
  68. void scanAndConnectTask(void* pvParameters) {
  69.     esp_task_wdt_add(NULL);  // Enable watchdog for this task
  70.     while (1) {
  71.         Serial.println("Scanning for BLE devices...");
  72.         pBLEScan->start(5, false);
  73.         vTaskDelay(1000 / portTICK_PERIOD_MS);
  74.  
  75.         BLEScanResults foundDevices = *pBLEScan->getResults();  // FIXED POINTER ERROR
  76.         for (int i = 0; i < foundDevices.getCount(); i++) {
  77.             BLEAdvertisedDevice advertisedDevice = foundDevices.getDevice(i);
  78.             Serial.println("Found Device: " + advertisedDevice.toString());
  79.  
  80.             if (advertisedDevice.haveName() && advertisedDevice.getName() == "PERIPH") {
  81.                 pBLEScan->stop();
  82.                 myDevice = new BLEAdvertisedDevice(advertisedDevice);
  83.                 Serial.println("Target device found. Connecting...");
  84.  
  85.                 if (connectToServer()) {
  86.                     Serial.println("Connected successfully.");
  87.                 } else {
  88.                     Serial.println("Connection failed. Retrying...");
  89.                 }
  90.                 myDevice = nullptr;
  91.             }
  92.         }
  93.         printMemoryUsage("scanAndConnectTask");
  94.         vTaskDelay(5000 / portTICK_PERIOD_MS);
  95.         esp_task_wdt_reset();  // Reset watchdog to prevent task hang
  96.     }
  97. }
  98.  
  99. // Function: Connect to BLE server
  100. bool connectToServer() {
  101.     if (pClient != nullptr && pClient->isConnected()) {
  102.         return true;
  103.     }
  104.  
  105.     pClient = BLEDevice::createClient();
  106.     pClient->setClientCallbacks(new MyClientCallback());
  107.  
  108.     if (!pClient->connect(myDevice)) {
  109.         Serial.println("Failed to connect to peripheral.");
  110.         delete pClient;
  111.         pClient = nullptr;
  112.         return false;
  113.     }
  114.  
  115.     pRemoteService = pClient->getService(serviceUUID);
  116.     if (pRemoteService == nullptr) {
  117.         Serial.println("Failed to find service UUID.");
  118.         pClient->disconnect();
  119.         return false;
  120.     }
  121.  
  122.     pRemoteCharacteristic = pRemoteService->getCharacteristic(charUUID);
  123.     pRemoteRxCharacteristic = pRemoteService->getCharacteristic(rxUUID);
  124.     if (pRemoteCharacteristic == nullptr || pRemoteRxCharacteristic == nullptr) {
  125.         Serial.println("Failed to find characteristics.");
  126.         pClient->disconnect();
  127.         return false;
  128.     }
  129.  
  130.     connected = true;
  131.     return true;
  132. }
  133.  
  134. // Task: Send and receive data
  135. void sendReceiveTask(void* pvParameters) {
  136.     esp_task_wdt_add(NULL);  // Enable watchdog for this task
  137.     while (1) {
  138.         if (connected) {
  139.             sendReadRequestToSlave(0x43, 5);
  140.             readDataFromPeripheral();
  141.         }
  142.         printMemoryUsage("sendReceiveTask");
  143.         vTaskDelay(5000 / portTICK_PERIOD_MS);
  144.         esp_task_wdt_reset();  // Reset watchdog to prevent task hang
  145.     }
  146. }
  147.  
  148. // Function: Send read request to slave device
  149. void sendReadRequestToSlave(uint16_t startingAddress, uint16_t length) {
  150.     Serial.println("Sending read request...");
  151.     if (!connected || pRemoteRxCharacteristic == nullptr) {
  152.         Serial.println("Not connected or RX characteristic unavailable.");
  153.         return;
  154.     }
  155.  
  156.     uint8_t requestData[8] = {
  157.         0x20, 0x03,
  158.         (startingAddress >> 8) & 0xFF, startingAddress & 0xFF,
  159.         (length >> 8) & 0xFF, length & 0xFF,
  160.         0x72, 0xAC
  161.     };
  162.  
  163.     pRemoteRxCharacteristic->writeValue(requestData, sizeof(requestData));
  164. }
  165.  
  166. // Function: Read data from peripheral
  167. void readDataFromPeripheral() {
  168.     if (!connected || pRemoteCharacteristic == nullptr) {
  169.         Serial.println("Not connected or TX characteristic unavailable.");
  170.         return;
  171.     }
  172.  
  173.     String value = pRemoteCharacteristic->readValue();
  174.     Serial.print("Received Data: ");
  175.     Serial.println(value);
  176.  
  177.     Serial.print("Data (HEX): ");
  178.     for (size_t i = 0; i < value.length(); i++) {
  179.         Serial.print((uint8_t)value[i], HEX);
  180.         Serial.print(" ");
  181.     }
  182.     Serial.println();
  183. }
  184.  
  185. // Function: Print memory usage
  186. void printMemoryUsage(const char* taskName) {
  187.     Serial.print("[MEMORY] Task: ");
  188.     Serial.print(taskName);
  189.     Serial.print(" | Free Heap: ");
  190.     Serial.print(esp_get_free_heap_size());
  191.     Serial.print(" bytes | Min Heap: ");
  192.     Serial.print(esp_get_minimum_free_heap_size());
  193.     Serial.println(" bytes");
  194. }
  195.  
  196. void setup(void)
  197. {
  198.     Serial.begin(57600); // Initialize Serial for debugging
  199.     Serial.println("Starting BLE Client...");
  200.     BLEDevice::init("CENTRAL");
  201.  
  202.     // Set TX power
  203.     esp_ble_tx_power_set(ESP_BLE_PWR_TYPE_DEFAULT, ESP_PWR_LVL_P9); // This line may not be compatible with ArduinoBLE library
  204.  
  205.     // Initialize BLE scan
  206.     pBLEScan = BLEDevice::getScan();
  207.     pBLEScan->setInterval(2000);
  208.     pBLEScan->setWindow(1000);
  209.     pBLEScan->setActiveScan(true);
  210.  
  211.     // Create tasks on specific cores
  212.     xTaskCreatePinnedToCore(scanAndConnectTask, "Scan Task", 10240, NULL, 1, NULL, 0);
  213.     xTaskCreatePinnedToCore(sendReceiveTask, "Data Task", 10240, NULL, 2, NULL, 1);
  214.  
  215.     pinMode(myDHT22_DHT22_DOUT_PIN_D4, INPUT_PULLUP); // Initialize DHT sensor pin
  216. }
  217.  
  218. void loop(void)
  219. {
  220.     // put your main code here, to run repeatedly:
  221.     delay(500); // Delay to prevent overwhelming the loop
  222. }
  223.  
  224. /* END CODE */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement