LinkNode_DataAdvertising

Fork of Sensors by Delong Qi

Sensors.h

Committer:
helloqi
Date:
2016-04-13
Revision:
5:66c0e776190b
Parent:
3:9125dafacc63

File content as of revision 5:66c0e776190b:

#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