Easylube

Dependencies:   DS1820 libmDot mbed-rtos mbed

EasyLube.h

Committer:
TataLora
Date:
2016-10-14
Revision:
3:323401b1b227
Parent:
2:26ffaed90e4f

File content as of revision 3:323401b1b227:


#ifndef C_EASYLUBE
#define C_EASYLUBE

class EasyLube {
public:
    enum Activity {
        NONE, 
        STARTING, 
        DOSAGE, 
        ERROR, 
        ALIVE, 
        NO_SIGNAL, 
        POWER_UP
    };

    Activity getActivity(void);
};

#endif