Delong Qi / Sensors

Dependents:   LinkNode_DataAdvertising LinkNode_DataAdvertising1

Fork of TMP_nrf51 by xiao sun

Sensors.h

Committer:
helloqi
Date:
2016-02-22
Revision:
3:9125dafacc63

File content as of revision 3:9125dafacc63:

#ifndef Sensors_H
#define Sensors_H
 
#include "mbed.h"
 
void add_data(void);

class Sensors
{
public:
    typedef uint64_t tmpSensorValue_t;
    
    tmpSensorValue_t get();
 
};
 
#endif