Polytech school project. RICM4 students, see http://air.imag.fr/index.php/Projets-2016-2017-Station_de_pompage_connect%C3%A9e for more information

Dependencies:   SX1272Lib mbed WakeUp

Fork of SX1272PingPong by Semtech

pompe.h

Committer:
chevamax
Date:
2017-04-01
Revision:
17:cce0eada6d82
Parent:
15:79a78f997f18

File content as of revision 17:cce0eada6d82:

#ifndef __POMPE_H
#define __POMPE_H

#include "mbed.h"

//Représentation de la pompe
class Pompe {
  public:
    Pompe(PinName pin);
    void activerPompe();
    void arreterPompe();
    char etat();
    
  private:
    DigitalOut p;
};

#endif // __POMPE_H