Bonjour/bonsoir à vous.
je viens ici demander un petit peu d'aide dans le cas d'un projet incluant des Beacons BLE (Bluetooth Low Energy).
Pour être plus précis, ce projet est un projet de BAC (je suis en Terminale Sti2D Spé SIN) avec comme objectif de créer une interface de Géolocalisation Indoor ( à but social, EHPAD/Hôpitaux).
nous avons, moi et mon équipe, choisi, pendant notre travail de revue n°0 et n°1 (que je peux vous fournir si vous le souhaitez), de nous pencher sur une géolocalisation en utilisant des Beacons BLE, n'ayant que 4 mois pour finir ce projet (-2 à 3 semaines de travail de Revues).
Dans ma partie de travail, je dois m'occuper de la locasation. pour répondre à ce besoin, on s'est décidé, avec mes camarades, de créer des Beacons à partir d'une carte arduino, avec module Bluefruit LE Friend en émetteur, et créer le système de géolocalisation avec une autre carte Arduino avec un module Bluetooth HM-06 en Récepteur.
et donc nous arrivons à mon problème : ayant reçu la carte et le module émetteur, je suis parti chercher des propositions de codes, pour les utiliser et surtout les comprendre (pour éviter de passer pour un flemmard pendant l'oral de BAC), j'ai donc pu trouvez plusieurs bibliothèque adaptée pour le module que j'utilise et je profite de plus d'un programme "exemple" de Beacon
le lien des bibliothèques : https://github.com/adafruit/Adafruit_BluefruitLE_nRF51
dans le cas du programme, j'ai pu comprendre certaines commandes (comme FACTORYRESET) mais j'ai vraiment du mal à comprendre le reste
/*********************************************************************
This is an example for our nRF51822 based Bluefruit LE modules
Pick one up today in the adafruit shop!
Adafruit invests time and resources providing this open source code,
please support Adafruit and open-source hardware by purchasing
products from Adafruit!
MIT license, check LICENSE for more information
All text above, and the splash screen below must be included in
any redistribution
*********************************************************************/
#include <Arduino.h>
#include <SPI.h>
#include "Adafruit_BLE.h"
#include "Adafruit_BluefruitLE_SPI.h"
#include "Adafruit_BluefruitLE_UART.h"
#include "BluefruitConfig.h"
#if SOFTWARE_SERIAL_AVAILABLE
#include <SoftwareSerial.h>
#endif
/*=========================================================================
APPLICATION SETTINGS
FACTORYRESET_ENABLE Perform a factory reset when running this sketch
Enabling this will put your Bluefruit LE module
in a 'known good' state and clear any config
data set in previous sketches or projects, so
running this at least once is a good idea.
When deploying your project, however, you will
want to disable factory reset by setting this
value to 0. If you are making changes to your
Bluefruit LE device via AT commands, and those
changes aren't persisting across resets, this
is the reason why. Factory reset will erase
the non-volatile memory where config data is
stored, setting it back to factory default
values.
Some sketches that require you to bond to a
central device (HID mouse, keyboard, etc.)
won't work at all with this feature enabled
since the factory reset will clear all of the
bonding data stored on the chip, meaning the
central device won't be able to reconnect.
BEACON_MANUFACTURER_ID Company Identifier assigned by Bluetooth SIG
Full list of Manufacturer ID can be found here
https://www.bluetooth.org/en-us/specification/assigned-numbers/company-identifiers
BEACON_UUID 16-bytes UUID in hex format AA-BB-...
BEACON_MAJOR 16-bit major nunber
BEACON_MINOR 16-bit minor nunber
BEACON_RSSI_1M
-----------------------------------------------------------------------*/
#define FACTORYRESET_ENABLE 0
#define MANUFACTURER_ADAF "0x0822"
#define MANUFACTURER_NORDIC "0x0059"
#define BEACON_MANUFACTURER_ID MANUFACTURER_ADAF
#define BEACON_UUID "01-12-23-34-45-56-67-78-89-9A-AB-BC-CD-DE-EF-F0"
#define BEACON_MAJOR "0x0000"
#define BEACON_MINOR "0x0000"
#define BEACON_RSSI_1M "-54"
/*=========================================================================*/
// Create the bluefruit object, either software serial...uncomment these lines
/*
SoftwareSerial bluefruitSS = SoftwareSerial(BLUEFRUIT_SWUART_TXD_PIN, BLUEFRUIT_SWUART_RXD_PIN);
Adafruit_BluefruitLE_UART ble(bluefruitSS, BLUEFRUIT_UART_MODE_PIN,
BLUEFRUIT_UART_CTS_PIN, BLUEFRUIT_UART_RTS_PIN);
*/
/* ...or hardware serial, which does not need the RTS/CTS pins. Uncomment this line */
// Adafruit_BluefruitLE_UART ble(BLUEFRUIT_HWSERIAL_NAME, BLUEFRUIT_UART_MODE_PIN);
/* ...hardware SPI, using SCK/MOSI/MISO hardware SPI pins and then user selected CS/IRQ/RST */
Adafruit_BluefruitLE_SPI ble(BLUEFRUIT_SPI_CS, BLUEFRUIT_SPI_IRQ, BLUEFRUIT_SPI_RST);
/* ...software SPI, using SCK/MOSI/MISO user-defined SPI pins and then user selected CS/IRQ/RST */
//Adafruit_BluefruitLE_SPI ble(BLUEFRUIT_SPI_SCK, BLUEFRUIT_SPI_MISO,
// BLUEFRUIT_SPI_MOSI, BLUEFRUIT_SPI_CS,
// BLUEFRUIT_SPI_IRQ, BLUEFRUIT_SPI_RST);
// A small helper
void error(const __FlashStringHelper*err) {
Serial.println(err);
while (1);
}
/**************************************************************************/
/*!
@brief Sets up the HW an the BLE module (this function is called
automatically on startup)
*/
/**************************************************************************/
void setup(void)
{
while (!Serial); // required for Flora & Micro
delay(500);
Serial.begin(115200);
Serial.println(F("Adafruit Bluefruit Beacon Example"));
Serial.println(F("---------------------------------"));
/* Initialise the module */
Serial.print(F("Initialising the Bluefruit LE module: "));
if ( !ble.begin(VERBOSE_MODE) )
{
error(F("Couldn't find Bluefruit, make sure it's in CoMmanD mode & check wiring?"));
}
Serial.println( F("OK!") );
if ( FACTORYRESET_ENABLE )
{
/* Perform a factory reset to make sure everything is in a known state */
Serial.println(F("Performing a factory reset: "));
if ( ! ble.factoryReset() ){
error(F("Couldn't factory reset"));
}
}
/* Disable command echo from Bluefruit */
ble.echo(false);
Serial.println("Requesting Bluefruit info:");
/* Print Bluefruit information */
ble.info();
Serial.println(F("Setting beacon configuration details: "));
// AT+BLEBEACON=0x0059,01-12-23-34-45-56-67-78-89-9A-AB-BC-CD-DE-EF-F0,0x0000,0x0000,-54
ble.print("AT+BLEBEACON=" );
ble.print(BEACON_MANUFACTURER_ID ); ble.print(',');
ble.print(BEACON_UUID ); ble.print(',');
ble.print(BEACON_MAJOR ); ble.print(',');
ble.print(BEACON_MINOR ); ble.print(',');
ble.print(BEACON_RSSI_1M );
ble.println(); // print line causes the command to execute
Serial.println("ca passe");
# Enable Nordic Beacon emulation
# Manufacturer ID = 0x0059
AT+BLEBEACON=0x0059,01-12-23-34-45-56-67-78-89-9A-AB-BC-CD-DE-EF-F0,0x0000,0x0000,-59
OK
# Reset to change the advertising data
ATZ
OK
// check response status
Serial.println();
Serial.println(F("Open your beacon app to test"));
}
/**************************************************************************/
/*!
@brief Constantly poll for new command or response data
*/
/**************************************************************************/
void loop(void)
{
Serial.println (ble.read());
delay(100);
}
je n'ai donc que deux requêtes à vous présenter :
1- pouvez-vous m'expliquer les autre commandes de ce programme
2- est-ce que peut m'aider à pouvoir coder ce Beacon afin qu'il puisse envoyer de manière répétée un texte, récupérable et lisible par la carte et module récepteurs
Je vous remercie de votre attention et de votre aide, si vous avez besoin de précisions, demandez le moi (je vais essayer d'être régulier sur le site).