111

Dependencies:   BufferedSerial FastPWM mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers pumpt.h Source File

pumpt.h

00001 /*
00002  * pumpt.h
00003  *
00004  *  Created on: 2016. 4. 11.
00005  *      Author: right
00006  */
00007 
00008 #ifndef PUMPT_H_
00009 #define PUMPT_H_
00010 
00011 #include "FastPWM.h"
00012 
00013 class pump_t {
00014 public:
00015     void setPWM(float PWMvlaue);
00016 
00017     pump_t();
00018     pump_t(FastPWM *_out);
00019     virtual ~pump_t();
00020 private:
00021     FastPWM *out;
00022 };
00023 
00024 #endif /* PUMPT_H_ */
00025