首页 > 解决方案 > bluetooth module accelerometer

问题描述

I have a project to do for school: a captor for boxer. It will be i have to connect an Arduino nano 33 ble Sense with the Bluetooth. The idea is to transfer data of accelerometer to a smartphone with an application (maybe made with MIT app Inventor). And so show to an athlete the power of his hit with the application (accelration --) force ---) power). But i didn't manage to connect my arduino to my smarthphone. Indeed, i follow a tuto to connect it. In fact, I succeed in connecting the arduino with nFr connect but I can't do anything.

the code (for bluetooth nFr connect) in question is here : (its just an example because my final goal is to do this but with the accelerometer)

#include <ArduinoBLE.h>
#include <Arduino_LSM9DS1.h>

BLEService dataService("180C"); // User defined service

BLEStringCharacteristic dataCharacteristic("2A56", // standard 16-bit characteristic UUID
    BLERead | BLENotify, 13); // remote clients will be able to read and subscribe to notifications

int oldValue = 0;  // last value
long previousMillis = 0;  // last time the value was checked, in ms

void setup()
{
    Serial.begin(9600); // initialize serial communication
    while (!Serial)
        ;

    pinMode(LED_BUILTIN, OUTPUT); // initialize the built-in LED pin

    if (!BLE.begin()) { // initialize BLE
        Serial.println("starting BLE failed!");
        while (1)
            ;
    }

    BLE.setLocalName("Sac de frappe"); // Set name for connection
    BLE.setAdvertisedService(dataService); // Advertise service
    dataService.addCharacteristic(dataCharacteristic); // Add characteristic to service
    BLE.addService(dataService); // Add service
    dataCharacteristic.setValue(String(oldValue)); // Set data string

    BLE.advertise(); // Start advertising
    Serial.print("Peripheral device MAC: ");
    Serial.println(BLE.address());
    Serial.println("Waiting for connections...");

  Serial.begin(9600);
  while (!Serial);
  Serial.println("Started");

  if (!IMU.begin()) {
    Serial.println("Failed to initialize IMU!");
    while (1);
  }

  Serial.print("Accelerometer sample rate = ");
  Serial.print(IMU.accelerationSampleRate());
  Serial.println(" Hz");
  Serial.println();
  Serial.println("Acceleration in G's");
  Serial.println("X\tY\tZ");
}

void loop()
{
    BLEDevice central = BLE.central(); // Wait for a BLE central to connect

    // if a central is connected to the peripheral:
    if (central) {
        Serial.print("Connected to central MAC: ");
        // print the central's BT address:
        Serial.println(central.address());
        // turn on the LED to indicate the connection:
        digitalWrite(LED_BUILTIN, HIGH);

        // update value every 200ms
        // while the central is connected:
        while (central.connected()) {
            long currentMillis = millis();
            // if 200ms have passed, update value:
            if (currentMillis - previousMillis >= 200) {
                previousMillis = currentMillis;
                updateValue();
            }
        }
    }
    // when the central disconnects, turn off the LED:
    digitalWrite(LED_BUILTIN, LOW);
    Serial.print("Disconnected from central MAC: ");
    Serial.println(central.address());
     float x, y, z;

  if (IMU.accelerationAvailable()) {
    IMU.readAcceleration(x, y, z);

    Serial.print(x);
    Serial.print('\t');
    Serial.print(y);
    Serial.print('\t');
    Serial.println(z);
  }

}

void updateValue() {
    int value = analogRead(A0); // Read your accelerometer data here

    if (value != oldValue) {
        Serial.print("Accelerometer Data is now: "); // print it
        Serial.println(value);
        dataCharacteristic.writeValue(String(value));  // update value
        // save the level for next comparison
        oldValue = value;
    }
}    
   

thanks for helping (sorry for my english)

标签: arduinobluetoothbluetooth-lowenergy

解决方案


Edited to match edited code in question

To transfer your accelerometer data you could do something similar to the BatteryMonitor example:

Use notifications on your characteristic to allow your smartphone to receive changes without constantly reading manually. Readout and update accelerometer data constantly while central is connected.

#include <ArduinoBLE.h>
#include <Arduino_LSM9DS1.h>

BLEService dataService("180C"); // User defined service

BLEStringCharacteristic dataCharacteristic("2A56", // standard 16-bit characteristic UUID
    BLERead | BLENotify, 50); // remote clients will be able to read and subscribe to notifications

float oldX = 0.0;  // last value
float oldY = 0.0;
float oldZ = 0.0;
long previousMillis = 0;  // last time the value was checked, in ms

void setup()
{
    Serial.begin(9600); // initialize serial communication
    while (!Serial)
        ;

    pinMode(LED_BUILTIN, OUTPUT); // initialize the built-in LED pin

    if (!BLE.begin()) { // initialize BLE
        Serial.println("starting BLE failed!");
        while (1)
            ;
    }

    BLE.setLocalName("Sac de frappe"); // Set name for connection
    BLE.setAdvertisedService(dataService); // Advertise service
    dataService.addCharacteristic(dataCharacteristic); // Add characteristic to service
    BLE.addService(dataService); // Add service
    dataCharacteristic.setValue(""); // Set initial value

    BLE.advertise(); // Start advertising
    Serial.print("Peripheral device MAC: ");
    Serial.println(BLE.address());
    Serial.println("Waiting for connections...");

    Serial.begin(9600);
    while (!Serial);
    Serial.println("Started");

    if (!IMU.begin()) {
        Serial.println("Failed to initialize IMU!");
        while (1);
    }

    Serial.print("Accelerometer sample rate = ");
    Serial.print(IMU.accelerationSampleRate());
    Serial.println(" Hz");
    Serial.println();
    Serial.println("Acceleration in G's");
    Serial.println("X\tY\tZ");
}

void loop()
{
    BLEDevice central = BLE.central(); // Wait for a BLE central to connect

    // if a central is connected to the peripheral:
    if (central) {
        Serial.print("Connected to central MAC: ");
        // print the central's BT address:
        Serial.println(central.address());
        // turn on the LED to indicate the connection:
        digitalWrite(LED_BUILTIN, HIGH);

        // update value every 200ms
        // while the central is connected:
        while (central.connected()) {
            long currentMillis = millis();
            // if 200ms have passed, update value:
            if (currentMillis - previousMillis >= 200) {
                previousMillis = currentMillis;
                updateValue();
            }
        }
    }
    // when the central disconnects, turn off the LED:
    digitalWrite(LED_BUILTIN, LOW);
    Serial.print("Disconnected from central MAC: ");
    Serial.println(central.address());
}

void updateValue() {
    float x, y, z;

    if (!IMU.accelerationAvailable()) return; // Return if not ready
    IMU.readAcceleration(x, y, z); // Read new data

    if (x != oldX || y != oldY || z != oldZ) {
        // print it
        Serial.print(x);
        Serial.print('\t');
        Serial.print(y);
        Serial.print('\t');
        Serial.println(z);
        dataCharacteristic.writeValue("X: " + String(x) + " Y: " + String(y) + " Z: " + String(z));  // update value
        // save the value for next comparison
        oldX = x;
        oldY = y;
        oldZ = z;
    }
}

You can validate the functionality using nRF Connect. If everything works how you like it proceed to develop you own app.


推荐阅读