Initial commit

Dependencies:   MODSERIAL Terminal TextLCD mbed

presence.h

Committer:
anmar
Date:
2014-12-05
Revision:
1:a6b0e0ce3e7a
Parent:
0:0903545c0460

File content as of revision 1:a6b0e0ce3e7a:

#ifndef __presence_h 
#define __presence_h 

#include "mbed.h"
#include "thermal.h"
#include "Terminal.h"

class Presence 
{
public:
    Presence();
    Presence(Terminal *term);
    
    Thermal *thermal;
    
private:
    I2C *i2c;
    
    void poll();
    
};

#endif