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

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers pompe.h Source File

pompe.h

00001 #ifndef __POMPE_H
00002 #define __POMPE_H
00003 
00004 #include "mbed.h"
00005 
00006 //Représentation de la pompe
00007 class Pompe {
00008   public:
00009     Pompe(PinName pin);
00010     void activerPompe();
00011     void arreterPompe();
00012     char etat();
00013     
00014   private:
00015     DigitalOut p;
00016 };
00017 
00018 #endif // __POMPE_H