TOF based Presence Detector

Dependencies:   BLE_API X_NUCLEO_6180XA1 X_NUCLEO_IDB0XA1 mbed

Fork of BLE_HeartRate_IDB0XA1 by ST

Committer:
hux
Date:
Mon Aug 20 16:42:59 2018 +0000
Revision:
28:a23b16555909
TOF Detector - Basis for Presence Detection

Who changed what in which revision?

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