Bluetooth Connected TOF Sensor

Dependencies:   BLE_API X_NUCLEO_6180XA1 X_NUCLEO_IDB0XA1 mbed

Fork of BLE_HeartRate_IDB0XA1 by ST

Committer:
hux
Date:
Wed Feb 01 22:08:56 2017 +0000
Revision:
28:def5e0f0fb06
First S16_Blue_ToF application which runs nicely!; Digital display can be switched on/off with red slider

Who changed what in which revision?

UserRevisionLine numberNew contents of line
hux 28:def5e0f0fb06 1 // bricks.h - single header for inclusion of BLE stuff
hux 28:def5e0f0fb06 2 // and most common brick headers
hux 28:def5e0f0fb06 3
hux 28:def5e0f0fb06 4 #ifndef _BRICKS_H_
hux 28:def5e0f0fb06 5 #define _BRICKS_H_
hux 28:def5e0f0fb06 6
hux 28:def5e0f0fb06 7 #include <mbed.h>
hux 28:def5e0f0fb06 8 #include "ble/BLE.h"
hux 28:def5e0f0fb06 9
hux 28:def5e0f0fb06 10 // include o.h before any other includes of bricks headers
hux 28:def5e0f0fb06 11
hux 28:def5e0f0fb06 12 #include "bricks/o.h"
hux 28:def5e0f0fb06 13
hux 28:def5e0f0fb06 14 // include other bricks headers in any order (we use alphabetical order)
hux 28:def5e0f0fb06 15
hux 28:def5e0f0fb06 16 #include "bricks/advertise.h"
hux 28:def5e0f0fb06 17 #include "bricks/blinker.h"
hux 28:def5e0f0fb06 18 #include "bricks/callback.h"
hux 28:def5e0f0fb06 19 #include "bricks/characteristic.h"
hux 28:def5e0f0fb06 20 #include "bricks/collection.h"
hux 28:def5e0f0fb06 21 #include "bricks/enroll.h"
hux 28:def5e0f0fb06 22 #include "bricks/get.h"
hux 28:def5e0f0fb06 23 #include "bricks/init.h"
hux 28:def5e0f0fb06 24 #include "bricks/print.h"
hux 28:def5e0f0fb06 25 #include "bricks/service.h"
hux 28:def5e0f0fb06 26 #include "bricks/set.h"
hux 28:def5e0f0fb06 27 #include "bricks/sleep.h"
hux 28:def5e0f0fb06 28 #include "bricks/trace.h"
hux 28:def5e0f0fb06 29 #include "bricks/types.h"
hux 28:def5e0f0fb06 30 #include "bricks/updated.h"
hux 28:def5e0f0fb06 31
hux 28:def5e0f0fb06 32 #endif // _BRICKS_H_