Self test boot program for testing icarus sensors

Dependencies:   BLE_API mbed nRF51822

Fork of BLE_UARTConsole by Bluetooth Low Energy

Committer:
smigielski
Date:
Mon Jan 26 13:57:26 2015 +0000
Revision:
7:438b55fe8576
Child:
8:e9ae7a01d866
Simple sensor structure

Who changed what in which revision?

UserRevisionLine numberNew contents of line
smigielski 7:438b55fe8576 1 #ifndef MBED_RNG_SENSOR_H
smigielski 7:438b55fe8576 2 #define MBED_RNG_SENSOR_H
smigielski 7:438b55fe8576 3
smigielski 7:438b55fe8576 4 #include "mbed.h"
smigielski 7:438b55fe8576 5
smigielski 7:438b55fe8576 6 #include "BaseSensor.h"
smigielski 7:438b55fe8576 7
smigielski 7:438b55fe8576 8 class RNGSensor : public BaseSensor {
smigielski 7:438b55fe8576 9 public:
smigielski 7:438b55fe8576 10 RNGSensor();
smigielski 7:438b55fe8576 11 private:
smigielski 7:438b55fe8576 12
smigielski 7:438b55fe8576 13 };
smigielski 7:438b55fe8576 14
smigielski 7:438b55fe8576 15 #endif