no description

Fork of Middleware by Roberto Herrera

SensorPIR.h

Committer:
RoHe
Date:
2015-12-05
Revision:
0:d1ff330c5128

File content as of revision 0:d1ff330c5128:

/*

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