no description
Fork of Middleware by
Diff: SensorPIR.h
- Revision:
- 0:d1ff330c5128
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/SensorPIR.h Sat Dec 05 17:43:29 2015 +0000 @@ -0,0 +1,44 @@ +/* + +Database.cpp + +Only to improve the clarity of main .cpp +This don't have any new classes + +All the multiple task are here +for Smart Room project asked by +Gustavo Torres + +Last update by RoHe 16/11/2015 + +*/ +#include "mbed.h" +#include "Initial.h" + +#ifndef SENSORPIR_H_ +#define SENSORPIR_H_ + +class Drivers { + +public: + Drivers(); + bool is_good(void); + int getVar(void); + char* echo(void); + +private: + int varInt; +}; + + + +/*Extern Defines*/ + +/*Extern Variables*/ + +/*Extern Functions*/ +extern int GetPersonStatus(int RoomPrescence); + + + +#endif