Bad connection bewteen BLE controller and ESP32
Posted: Fri Nov 26, 2021 4:55 pm
Hello,
I'm using a BLE controller to control my ESP32. I'm using this library: https://github.com/nkolban/ESP32_BLE_Arduino.
I modified the file FreeRTOS.cpp of the ESP32 package to have a fixed time semaphore as Github users advised it. I replaced all occurencies of xSemaphoreTake(m_semaphore, portMAX_DELAY) by xSemaphoreTake(m_semaphore, 15000UL).
The thing is the ESP32 is struggling to connect to my controller. Sometimes, it connects perfectly but It often gets stuck at line 370. Here is the output of the serial monitor:
17:51:03.046 -> BLE Advertised Device found: Name: VR BOX, Address: ff:ff:20:01:b5:1e, serviceUUID: 00001812-0000-1000-8000-00805f9b34fb
17:51:03.046 -> Found VRBOX Server
17:51:03.046 -> Server has HID service
17:51:03.046 -> Forming a connection to ff:ff:20:01:b5:1e
17:51:03.046 -> - Created client
17:51:03.146 -> lld_pdu_get_tx_flush_nb HCI packet count mismatch (0, 1)
17:51:03.146 -> - Connected to server
17:51:03.146 -> Debug flag test 1
Here is the code:
Any idea would be appreciated !
I'm using a BLE controller to control my ESP32. I'm using this library: https://github.com/nkolban/ESP32_BLE_Arduino.
I modified the file FreeRTOS.cpp of the ESP32 package to have a fixed time semaphore as Github users advised it. I replaced all occurencies of xSemaphoreTake(m_semaphore, portMAX_DELAY) by xSemaphoreTake(m_semaphore, 15000UL).
The thing is the ESP32 is struggling to connect to my controller. Sometimes, it connects perfectly but It often gets stuck at line 370. Here is the output of the serial monitor:
17:51:03.046 -> BLE Advertised Device found: Name: VR BOX, Address: ff:ff:20:01:b5:1e, serviceUUID: 00001812-0000-1000-8000-00805f9b34fb
17:51:03.046 -> Found VRBOX Server
17:51:03.046 -> Server has HID service
17:51:03.046 -> Forming a connection to ff:ff:20:01:b5:1e
17:51:03.046 -> - Created client
17:51:03.146 -> lld_pdu_get_tx_flush_nb HCI packet count mismatch (0, 1)
17:51:03.146 -> - Connected to server
17:51:03.146 -> Debug flag test 1
Here is the code:
- //==============================================================================
- // Robot controlled by VR Box using BLE on an ESP32
- // Target: DoIt ESP32 DEVKIT V1, ESP-VROOM-32 module
- // Compiler: Arduino 1.8.10
- // SDK: ESP32 Arduino SDK by Expressif Ver 1.0.4
- //==============================================================================
- // ESP32 (DoIt ESP32 DEVKIT V1, ESP-VROOM-32 module) board
- // In Arduino Board Manager, Select the following;
- // Arduino Board: "ESP32 Dev Module"
- // Flash Mode: QIO
- // Flash Size: 4MB (32Mb)
- // Flash Frequency: "80MHz"
- // Upload Speed: 921600
- // Core Debug Level: None
- //******************************************************************************
- // VRBOX is a handheld Bluetooth BLE device with a joystick and six useful
- // buttons. This code shows how to setup the ESP32 as a BLE client to work
- // with the VRBOX BLE server. Most of the code is generic to any BLE server.
- // The name of the BLE server to search for and the services and characteristics
- // are specific to the VRBOX server.
- // You can use this code as a primer on how to connect other BLE servers to the
- // ESP32 or as the basis of any ESP32 project that you want to control using the
- // VRBOX device. The code should work with any ESP32 module.
- // The VR BOX server will shut itself off if there is no activity for 5 minutes.
- // This will cause the ESP32 to lose the Bluetooth connection and do a reset.
- // I bought mine at the local 5 Below store. The box is labeled; "Spektrum VR Control
- // Bluetooth RemoteController". I have also seen similar looking devices on the
- // Internet for upwards of $20.00. "VR BOX" is the name the device uses to identify
- // itself to other bluetooth devices.
- // Each defined task requires its own dedicated RAM allocation for its stack
- // How much RAM to allocate is determined by how nested the task is and how
- // many variables are stored on the stack (local variables). The default size
- // defined here is for 5K * 4 bytes/32 bit word, so 20K bytes
- // If you are getting;
- // JGuru Meditation Error: Core 0 panoc'd (Unhandled debug exception)
- // Debug excaption reason: Stack canary watchpoint triggered (task name)
- // then increase the TaskStackSize by 1024 until the Stack canary errors stop.
- // The ESP32 VROOM module has 288K bytes of RAM.
- #define TaskStackSize 5120
- // The blue and green LEDs are used to indicate when the ESP32 is scanning for
- // BLE servers and when the ESP32 has connected to the BLE server. The LEDs
- // can be moved to any GPIO pin (except LED, that is the builtin blue LED) that
- // is not input only.
- #include "BLEDevice.h"
- #include "ESP32Servo.h"
- #include <Wire.h>
- #include <TinyPICO.h>
- #include <math.h>
- // Initialise the TinyPICO library
- TinyPICO tp = TinyPICO();
- //------ VR Box Definitions -----
- enum
- {
- VB_TRIGGERS = 0,
- VB_JOYX,
- VB_JOYY,
- VB_BTNAB,
- VB_BTNCD,
- VB_NUMBYTES
- };
- // ===== VR Box Button Masks =====
- #define VB_LOW_TRIGGER 0x01
- #define VB_UPR_TRIGGER 0x02
- #define VB_BUTTON_A 0x01
- #define VB_BUTTON_B 0x02
- #define VB_BUTTON_C 0x01
- #define VB_BUTTON_D 0x02
- #define FRESHFLAG 0x80
- #define JOYTIMEOUT 30 // joystick no activity timeout in mS
- #define JoyStickDeadZone 0
- #define ServerName "VR BOX" // change this if your server uses a different name
- // ===== VRBOX Modes =====
- // This code assumes you are using the Mouse Mode
- // @ + A -> Music & Video mode
- // @ + B -> Horizontal Game mode
- // @ + C -> Vertical Game mode
- // @ + D -> Mouse Mode // use this mode
- // 4 byte notification, Trigger Sws, Joystick X, Joystick Y, 0x00
- // All four modes send data. However each mode uses different byte positions and
- // values for each of the switches. The joystick acts like a 'D' pad when not in
- // Mouse Mode (no analog value).
- //==============================================================================
- // I2C transmission
- const byte i2cSlaveAddress = 0x4;
- const int i2cFrequency = 100000;
- byte returnI2c; // 0:success | 1:data too long to fit in transmit buffer | 2:received NACK on transmit of address | 3:received NACK on transmit of data | 4:other error
- volatile bool flagButtonA = false;
- volatile bool flagButtonB = false;
- volatile bool flagButtonC = false;
- volatile bool flagButtonD = false;
- //Dotstar LED of the TinyPico board
- long ledColor = 0;
- bool ledBlink = false;
- bool ledFlash = false;
- const byte ledBlinkPeriod = 1; // LED blink period in seconds
- #define green 0x00FF00
- #define red 0xFF0000
- #define blue 0x0000FF
- #define yellow 0xFFFF00
- const byte tinyPicoLedBrightness = 255;
- // Servo gimbal
- // Le servo D645MW de Hitec, se contrôle avec un signal PWM allant de 900 à 2100us avec un neutre à 1500us.
- Servo servoGimbal;
- const byte servoPin = 5;
- const float servoMax = 2090;
- const float servoMin = 920;
- const float servoNeutral = 1500;
- float servoPWM = servoNeutral;
- const signed short inverseAxi = 1; // 1:normal | -1:inverse
- const byte power = 3; // Joystick equation : y = inverseAxi * servoPWMFactor * x^power
- const float servoPWMFactor = 0.001;
- // Delays
- const unsigned int delayTaskServo = 0;
- const unsigned int delayTaskI2c = 10;
- //==============================================================================
- typedef void (*NotifyCallback)(BLERemoteCharacteristic*, uint8_t*, size_t, bool);
- // BLE address we are looking for
- static uint8_t VrBoxAddress[6] = {0xff,0xff,0x20,0x01,0xb5,0x1e};
- // this is the service UUID of the VR Control handheld mouse/joystick device (HID)
- static BLEUUID serviceUUID("00001812-0000-1000-8000-00805f9b34fb");
- // Battery Service UUID
- static BLEUUID BatteryServiceUUID("0000180F-0000-1000-8000-00805f9b34fb");
- // this characteristic UUID works for joystick & triggers (report)
- static BLEUUID ReportCharUUID("00002A4D-0000-1000-8000-00805f9b34fb"); // report
- static boolean doConnect = false;
- static boolean connected = false;
- static BLERemoteCharacteristic* pRemoteCharacteristic;
- static BLEAdvertisedDevice* myDevice;
- static BLERemoteCharacteristic* pBatRemoteCharacteristic;
- // pointer to a list of characteristics of the active service,
- // sorted by characteristic UUID
- std::map<std::string, BLERemoteCharacteristic*> *pmap;
- std::map<std::string, BLERemoteCharacteristic*> :: iterator itr;
- // pointer to a list of characteristics of the active service,
- // sorted by characteristic handle
- std::map<std::uint16_t, BLERemoteCharacteristic*> *pmapbh;
- std::map<std::uint16_t, BLERemoteCharacteristic*> :: iterator itrbh;
- // storage for pointers to characteristics we want to work with
- // to do: change to linked list ?
- BLERemoteCharacteristic *bleRcs[4];
- // This is where we store the data from the buttons and joystick
- volatile byte VrBoxData[VB_NUMBYTES];
- volatile bool flag = false; // indicates new data to process
- // joyTimer is a 30 millisecond re-triggerable timer that sets the joystick
- // back to center if no activity on the joystick or trigger buttons.
- volatile uint32_t joyTimer = millis();
- // tasks handles
- TaskHandle_t HandleJS = NULL; // handle of the joystick task
- TaskHandle_t HandleAB = NULL; // handle of the A/B button task
- TaskHandle_t HandleCD = NULL; // handle of the C/D button task
- TaskHandle_t HandleSCAN = NULL; // handle of the BLE scan task
- TaskHandle_t HandleTINYLED = NULL; // handle of the DotStar LED task
- TaskHandle_t HandleSERVO = NULL; // handle of the Servo task
- TaskHandle_t HandleI2C = NULL; // handle of the I2c task
- // tasks priorities
- const short taskJoyStickPriority = 1;
- const short taskButtonABPriority = 1;
- const short taskButtonCDPriority = 1;
- const short taskScanPriority = 1;
- const short taskTinyLedPriority = 1;
- const short taskServoPriority = 1;
- const short taskI2cPriority = 1;
- char bfr[80];
- //******************************************************************************
- // HID notification callback handler.
- //******************************************************************************
- static void notifyCallback(
- BLERemoteCharacteristic* pBLERemoteCharacteristic,
- uint8_t* pData,
- size_t length,
- bool isNotify)
- {
- // ledColor = yellow;
- // ledFlash = true;
- // ledBlink = false;
- Serial.print("Notify callback for characteristic ");
- Serial.print(pBLERemoteCharacteristic->getUUID().toString().c_str());
- Serial.print(" of data length ");
- Serial.println(length);
- Serial.print("data: ");
- for (int i = 0; i < length; i++)
- Serial.printf("%02X ", pData[i]);
- Serial.println();
- // we are getting the two trigger buttons in the first byte, joyX & joyY in 2nd & 3rd bytes
- // A four byte report is the joystick/trigger buttons.
- // A two byte report is either the A/B buttons or the C/D buttons
- // Low nibble equal to 0x05 indicates A/B buttons.
- // A/B buttons auto-repeat if held. No other buttons do this.
- if (4 == length)
- {
- // copy data to VrBoxData
- for (int i = VB_TRIGGERS; i < VB_BTNAB; i++)
- VrBoxData[i] = pData[i];
- // wake up the joystick/trigger buttons handler task
- if (HandleJS)
- vTaskResume(HandleJS);
- // restart the joystick timer
- joyTimer = millis() + JOYTIMEOUT;
- }
- else if (2 == length)
- {
- // show the received data
- if (pData[1] == 0x50)
- {
- // A/B button report, wake the A/B button handler task
- VrBoxData[VB_BTNAB] = pData[0] & 0x0F;
- if (HandleAB)
- vTaskResume(HandleAB);
- }
- else
- {
- // C/D button report, wake the C/D button handler task
- VrBoxData[VB_BTNCD] = pData[0];
- if (HandleCD)
- vTaskResume(HandleCD);
- }
- }
- } // notifyCallback
- //******************************************************************************
- // Battery notification callback handler.
- //******************************************************************************
- static void BatteryNotifyCallback(
- BLERemoteCharacteristic* pBLERemoteCharacteristic,
- uint8_t* pData,
- size_t length,
- bool isNotify)
- {
- Serial.println("Battery Notification Callback Event");
- Serial.print("Data length ");
- Serial.println(length);
- Serial.print("data: ");
- for (int i = 0; i < length; i++)
- Serial.printf("%02X ", pData[i]);
- Serial.println();
- } // BatteryNotifyCallback
- //******************************************************************************
- // Connection state change event callback handler.
- //******************************************************************************
- class MyClientCallback : public BLEClientCallbacks
- {
- void onConnect(BLEClient* pclient)
- {
- Serial.println("onConnect event");
- }
- void onDisconnect(BLEClient* pclient)
- {
- Serial.println("onDisconnect event");
- connected = false;
- }
- };
- //******************************************************************************
- // Connect to a service, register for notifications from Report Characteristics.
- //******************************************************************************
- bool setupCharacteristics(BLERemoteService* pRemoteService, NotifyCallback pNotifyCallback)
- {
- // get all the characteristics of the service using the handle as the key
- pmapbh = pRemoteService->getCharacteristicsByHandle();
- // only interested in report characteristics that have the notify capability
- for (itrbh = pmapbh->begin(); itrbh != pmapbh->end(); itrbh++)
- {
- BLEUUID x = itrbh->second->getUUID();
- Serial.print("Characteristic UUID: ");
- Serial.println(x.toString().c_str());
- // the uuid must match the report uuid
- if (ReportCharUUID.equals(itrbh->second->getUUID()))
- {
- // found a report characteristic
- Serial.println("Found a report characteristic");
- if (itrbh->second->canNotify())
- {
- Serial.println("Can notify");
- // register for notifications from this characteristic
- itrbh->second->registerForNotify(pNotifyCallback);
- sprintf(bfr, "Callback registered for: Handle: 0x%08X, %d", itrbh->first, itrbh->first);
- Serial.println(bfr);
- }
- else
- {
- Serial.println("No notification");
- }
- }
- else
- {
- sprintf(bfr, "Found Characteristic UUID: %s\n", itrbh->second->getUUID().toString().c_str());
- Serial.println(bfr);
- }
- } // for
- } // setupCharacteristics
- //******************************************************************************
- // Validate the server has the correct name and services we are looking for.
- // The server must have the HID service, the Battery Service is optional.
- //******************************************************************************
- bool connectToServer()
- {
- Serial.print("Forming a connection to ");
- Serial.println(myDevice->getAddress().toString().c_str());
- BLEClient* pClient = BLEDevice::createClient();
- Serial.println(" - Created client");
- pClient->setClientCallbacks(new MyClientCallback());
- // Connect to the remote BLE Server.
- pClient->connect(myDevice); // if you pass BLEAdvertisedDevice instead of address, it will be recognized type of peer device address (public or private)
- Serial.println(" - Connected to server");
- // BLE servers may offer several services, each with unique characteristics
- // we can identify the type of service by using the service UUID
- // Obtain a reference to the service we are after in the remote BLE server.
- // this will return a pointer to the remote service if it has a matching service UUID
- Serial.println("Debug flag test 1");
- BLERemoteService* pRemoteService = pClient->getService(serviceUUID);
- Serial.println("Debug flag test 2");
- if (pRemoteService == nullptr)
- {
- Serial.print("Failed to find HID service UUID: ");
- Serial.println(serviceUUID.toString().c_str());
- pClient->disconnect();
- return false;
- }
- Serial.println(" - Found HID service");
- setupCharacteristics(pRemoteService, notifyCallback);
- pRemoteService = pClient->getService(BatteryServiceUUID);
- if (pRemoteService == nullptr)
- {
- Serial.print("Failed to find battery service UUID: ");
- Serial.println(serviceUUID.toString().c_str());
- }
- else
- {
- Serial.println(" - Found battery service");
- setupCharacteristics(pRemoteService, BatteryNotifyCallback);
- }
- connected = true;
- } // connectToServer
- //******************************************************************************
- // Scan for BLE servers and find the first one that advertises the service we are looking for.
- //******************************************************************************
- class MyAdvertisedDeviceCallbacks: public BLEAdvertisedDeviceCallbacks
- {
- // Called for each advertising BLE server.
- void onResult(BLEAdvertisedDevice advertisedDevice)
- {
- Serial.print("BLE Advertised Device found: ");
- Serial.println(advertisedDevice.toString().c_str());
- //Check if the server has the correct BLE address
- if (advertisedDevice.getAddress().equals(VrBoxAddress))
- {
- Serial.println("Found VRBOX Server");
- // we found a server with the correct name, see if it has the service we are
- // interested in (HID)
- if (advertisedDevice.haveServiceUUID() && advertisedDevice.isAdvertisingService(serviceUUID))
- {
- Serial.println("Server has HID service");
- BLEDevice::getScan()->stop();
- myDevice = new BLEAdvertisedDevice(advertisedDevice);
- doConnect = true;
- } // Found our server
- else
- {
- Serial.println("Server does not have an HID service, not our server");
- }
- }
- else
- {
- Serial.println("Server address, not our server");
- }
- } // onResult
- }; // MyAdvertisedDeviceCallbacks
- // All of these tasks are designed to run forever. The tasks are resumed when
- // a notification message is received with new data.
- //******************************************************************************
- // Joystick handler Task.
- // Moving the joystick off center causes this task to be resumed about every
- // 15ms. Press or release of either trigger button will also resume this task.
- // If this task does not complete in less than 15mS you will lose joystick
- // movement data !!!
- // Holding the lower button will prevent the server from detecting that the
- // upper button has been pressed.
- // Holding the upper trigger and pressing the lower trigger results in the server
- // sending a notification that the lower trigger is pressed (the upper trigger
- // will be zero!). Releasing the lower trigger will cause the server to send a
- // notification that the upper trigger is pressed and the lower trigger is
- // released.
- //******************************************************************************
- void taskJoyStick(void *parameter)
- {
- int8_t x;
- int8_t y;
- uint8_t triggers;
- //===== if the task requires any one time initialization, put it here =====
- // forever loop
- while(true)
- {
- // give up the CPU, wait for new data
- vTaskSuspend(NULL);
- // Serial.print("taskJoyStick running on core ");
- // Serial.println(xPortGetCoreID());
- // we just woke up, new data is available, convert joystick data to
- // signed 8 bit integers
- x = (int8_t)VrBoxData[VB_JOYX];
- y = (int8_t)VrBoxData[VB_JOYY]; //Compris entre -24 et 24
- triggers = VrBoxData[VB_TRIGGERS];
- Serial.printf("Joystick X: %d, Y: %d Triggers: %02X\n", x, y, triggers);
- if (y < -JoyStickDeadZone)
- {
- // move forward
- Serial.println("Forward");
- // nacelle en avant
- servoPWM = constrain(servoPWM - (pow((float) y, power) * inverseAxi * servoPWMFactor), servoMin, servoMax);
- Serial.print("y * f: ");
- Serial.println((float) y*servoPWMFactor);
- Serial.println(servoPWM);
- }
- else if (y > JoyStickDeadZone)
- {
- // move backward
- Serial.println("Backward");
- // nacelle en arrière
- servoPWM = constrain(servoPWM - (pow((float) y, power) * inverseAxi * servoPWMFactor), servoMin, servoMax);
- Serial.print("y * f: ");
- Serial.println((float) y*servoPWMFactor);
- Serial.println(servoPWM);
- }
- if (x > JoyStickDeadZone)
- {
- // turn right
- Serial.println("Turn Right");
- //===== add your code here =====
- }
- else if (x < -JoyStickDeadZone)
- {
- // turn left
- Serial.println("Turn Left");
- //===== add your code here =====
- }
- if (triggers & VB_LOW_TRIGGER)
- {
- // the lower trigger button is pressed
- Serial.println("Low Trigger Pressed");
- // nacelle à 90°
- servoPWM = servoMin;
- }
- if (triggers & VB_UPR_TRIGGER)
- {
- // the upper trigger button is pressed
- Serial.println("Upper Trigger Pressed");
- // nacelle au neutre
- servoPWM = servoNeutral;
- }
- } // for
- } // taskJoyStick
- //******************************************************************************
- // A & B Buttons handler Task.
- // Holding the A or B button down will cause this task to be invoked about every
- // 15ms. If this task does not complete within 15mS you will lose button events.
- // The AB buttons work similar to the trigger buttons in that the A button will
- // prevent the B button from being detected and will override the B button when
- // pressed while the B button is held down.
- //******************************************************************************
- void taskButtonAB(void *parameter)
- {
- uint8_t buttons;
- unsigned long pastTime = 0;
- //===== if the task requires any one time initialization, put it here =====
- while(true)
- {
- // give up the CPU, wait for new data
- vTaskSuspend(NULL);
- // Serial.print("taskButtonAB running on core ");
- // Serial.println(xPortGetCoreID());
- // we just woke up, new data is available
- buttons = VrBoxData[VB_BTNAB];
- Serial.printf("A/B Buttons: %02X\n", buttons);
- if (buttons & VB_BUTTON_A)
- {
- // button A pressed or is being held down
- // Lumière +
- Serial.println("Button A");
- flagButtonA = true;
- }
- if (buttons & VB_BUTTON_B)
- {
- // button B pressed or is being held down
- // Lumière -
- Serial.println("Button B");
- flagButtonB = true;
- }
- } // for
- } // taskButtonAB
- //******************************************************************************
- // C & D Buttons handler Task.
- // Press or release of either the C or D button will resume this task. Holding
- // one button down blocks the Server from detecting the other button being
- // pressed.
- //******************************************************************************
- void taskButtonCD(void *parameter)
- {
- uint8_t buttons;
- //===== if the task requires any one time initialization, put it here =====
- while(true)
- {
- // give up the CPU
- vTaskSuspend(NULL);
- // Serial.print("taskButtonCD running on core ");
- // Serial.println(xPortGetCoreID());
- // we just woke up, new data is available
- buttons = VrBoxData[VB_BTNCD];
- Serial.printf("C/D Buttons: %02X\n", buttons);
- if (buttons & VB_BUTTON_C)
- {
- // button C pressed
- Serial.println("Button C");
- // Lumière max
- flagButtonC = true;
- }
- if (buttons & VB_BUTTON_D)
- {
- // button D pressed
- Serial.println("Button D");
- // Lumière min
- flagButtonD = true;
- }
- } // for
- } // taskButtonCD
- //******************************************************************************
- void taskScan(void *parameter)
- {
- while(true)
- {
- // give up the CPU
- vTaskSuspend(NULL);
- // Serial.print("taskScan running on core ");
- // Serial.println(xPortGetCoreID());
- // we just woke up
- Serial.println("Start scanning...");
- BLEDevice::getScan()->stop(); // in case a scan is already running (it prevents the library from bugging) // Maybe it can be deleted
- BLEDevice::getScan()->start(0);
- }
- }
- //static void scanCompleteCB(BLEScanResults scanResults)
- //{
- // printf("Scan complete!\n");
- // scanResults.dump();
- //}
- //******************************************************************************
- void taskServo(void *parameter)
- {
- vTaskSuspend(NULL);
- while(true)
- {
- vTaskDelay(delayTaskServo);
- // Serial.print("taskServo running on core ");
- // Serial.println(xPortGetCoreID());
- servoGimbal.writeMicroseconds(servoPWM);
- Serial.print("PWM: ");
- Serial.println(servoPWM);
- }
- }
- //******************************************************************************
- void taskTinyLed(void *parameter) {
- while(true) {
- // Serial.println("taskTinyLed");
- tp.DotStar_Clear();
- tp.DotStar_SetPixelColor( ledColor );
- tp.DotStar_SetBrightness( tinyPicoLedBrightness );
- tp.DotStar_Show();
- while(!ledBlink) { //Standby
- // Serial.println("LED Standby");
- vTaskDelay(10);
- }
- if(ledBlink) {
- vTaskDelay((ledBlinkPeriod*1000)/2);
- tp.DotStar_Clear();
- tp.DotStar_SetBrightness( 0 );
- tp.DotStar_Show();
- vTaskDelay((ledBlinkPeriod*1000)/2);
- }
- }
- }
- void taskI2c(void *parameter) {
- // give up the CPU
- vTaskSuspend(NULL);
- while(true) {
- if(flagButtonA == true) {
- Wire.beginTransmission(i2cSlaveAddress);
- Wire.write(0);
- returnI2c = Wire.endTransmission(i2cSlaveAddress);
- Serial.println(returnI2c);
- Serial.println("i2c 0");
- flagButtonA = false;
- }
- if(flagButtonB == true) {
- Wire.beginTransmission(i2cSlaveAddress);
- Wire.write(1);
- returnI2c = Wire.endTransmission(i2cSlaveAddress);
- Serial.println(returnI2c);
- Serial.println("i2c 1");
- flagButtonB = false;
- }
- if(flagButtonC == true) {
- Wire.beginTransmission(i2cSlaveAddress);
- Wire.write(2);
- returnI2c = Wire.endTransmission(i2cSlaveAddress);
- Serial.println(returnI2c);
- Serial.println("i2c 2");
- flagButtonC = false;
- }
- if(flagButtonD == true) {
- Wire.beginTransmission(i2cSlaveAddress);
- Wire.write(3);
- returnI2c = Wire.endTransmission(i2cSlaveAddress);
- Serial.println(returnI2c);
- Serial.println("i2c 3");
- flagButtonD = false;
- }
- vTaskDelay(delayTaskI2c);
- }
- }
- //******************************************************************************
- void setup()
- {
- //==============================================================================
- Wire.begin(); // Rejoindre le bus I2C (Pas besoin d adresse pour le maitre)
- Wire.setClock(i2cFrequency);
- // Attach the channel to the GPIO to be controlled
- //ledcAttachPin(FemtoBuckPin, femToBuckChannel);
- //==============================================================================
- // Servo gimbal
- servoGimbal.attach(servoPin);
- //==============================================================================
- BaseType_t xReturned;
- Serial.begin(115200);
- // create tasks to handle the joystick and buttons
- xReturned = xTaskCreatePinnedToCore(taskJoyStick, // task to handle activity on the joystick.
- "Joystick", // String with name of task.
- TaskStackSize, // Stack size in 32 bit words.
- NULL, // Parameter passed as input of the task
- taskJoyStickPriority, // Priority of the task.
- &HandleJS, // Task handle.
- 1); // Core where the task should run
- if (pdPASS == xReturned)
- {
- Serial.println("Joystick Task Created");
- }
- xReturned = xTaskCreatePinnedToCore(taskButtonAB, // task to handle activity on the A & B buttons.
- "ButtonsAB", // String with name of task.
- TaskStackSize, // Stack size in 32 bit words.
- NULL, // Parameter passed as input of the task
- taskButtonABPriority, // Priority of the task.
- &HandleAB, // Task handle.
- 1); // Core where the task should run
- if (pdPASS == xReturned)
- {
- Serial.println("AB Button Task Created");
- }
- xReturned = xTaskCreatePinnedToCore(taskButtonCD, // task to handle activity on the C & D buttons.
- "ButtonsCD", // String with name of task.
- TaskStackSize, // Stack size in 32 bit words.
- NULL, // Parameter passed as input of the task
- taskButtonCDPriority, // Priority of the task.
- &HandleCD, // Task handle.
- 1); // Core where the task should run
- if (pdPASS == xReturned)
- {
- Serial.println("CD Button Task Created");
- }
- // create task to handle the BLE scan
- xReturned = xTaskCreatePinnedToCore(taskScan,
- "Scan",
- TaskStackSize,
- NULL,
- taskScanPriority,
- &HandleSCAN,
- 1);
- if (pdPASS == xReturned)
- {
- Serial.println("Scan task created");
- }
- // create task to handle the Servo control of the COMETE
- xReturned = xTaskCreatePinnedToCore(taskServo,
- "Servo",
- TaskStackSize,
- NULL,
- taskServoPriority,
- &HandleSERVO,
- 1);
- if (pdPASS == xReturned)
- {
- Serial.println("Servo task created");
- }
- // create task to handle the DotStar LED
- xReturned = xTaskCreatePinnedToCore(taskTinyLed,
- "TinyLed",
- TaskStackSize,
- NULL,
- taskTinyLedPriority,
- &HandleTINYLED,
- 1);
- if (pdPASS == xReturned)
- {
- Serial.println("DotStar LED task created");
- }
- // create task to handle the i2c communication
- xReturned = xTaskCreatePinnedToCore(taskI2c,
- "i2c",
- TaskStackSize,
- NULL,
- taskI2cPriority,
- &HandleI2C,
- 1);
- if (pdPASS == xReturned)
- {
- Serial.println("i2c task created");
- }
- Serial.println("Starting ESP32 BLE Client...");
- BLEDevice::init("");
- // Retrieve a GATT Scanner and set the callback we want to use to be informed
- // when we have detected a new device. Specify that we want active scanning
- BLEScan* pBLEScan = BLEDevice::getScan();
- pBLEScan->setAdvertisedDeviceCallbacks(new MyAdvertisedDeviceCallbacks());
- pBLEScan->setInterval(1349);
- pBLEScan->setWindow(449);
- pBLEScan->setActiveScan(true);
- } // End of setup.
- //******************************************************************************
- // This is the Arduino main loop function.
- //******************************************************************************
- void loop()
- {
- // If the flag "doConnect" is true then we have scanned for and found the desired
- // BLE Server with which we wish to connect. Now we connect to it. Once we are
- // connected we set the connected flag to be true.
- if (doConnect == true)
- {
- if (connectToServer())
- {
- Serial.println("We are now connected to the BLE Server.");
- // wake up the servo task
- Serial.println("Resume servo task");
- vTaskResume(HandleSERVO);
- vTaskResume(HandleI2C);
- // Green LED
- ledColor = green;
- ledBlink = false;
- ledFlash = false;
- }
- else
- {
- Serial.println("We have failed to connect to the server; there is nothin more we will do.");
- }
- doConnect = false;
- }
- if (connected)
- {
- // joystick no activity detector
- if (joyTimer && (joyTimer < millis()))
- {
- Serial.println("Timeout");
- // no joystick notification for 30mS, center the joystick
- VrBoxData[VB_JOYX] = VrBoxData[VB_JOYY] = 0;
- // wake up the joystick task
- vTaskResume(HandleJS);
- joyTimer = 0;
- }
- }
- else
- {
- //Start BLE scan
- vTaskResume(HandleSCAN);
- //Stop the servo task
- //Serial.println("Stop servo task");
- vTaskSuspend(HandleSERVO);
- vTaskSuspend(HandleI2C);
- //Blink DotStar LED
- ledColor = blue;
- ledBlink = true;
- ledFlash = false;
- }
- } // End of loop