-
Notifications
You must be signed in to change notification settings - Fork 9
/
Pump.h
65 lines (56 loc) · 1.9 KB
/
Pump.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/*
Pump.h - DIY 5 channel doser
Copyright (C) 2001-2012 Georgi Todorov
All rights reserved.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
https://github.com/TeraHz/Doser
*/
#ifndef PUMP_H
#define PUMP_H
#if defined(ARDUINO) && ARDUINO >= 100
#include "Arduino.h"
#else
#include "WProgram.h"
#endif
class Pump {
public:
Pump( uint8_t pin, float mls, uint16_t dose, uint8_t dc, char * desc);
~Pump();
uint8_t getPin( void );
void setPin( uint8_t );
float getMlm( void );
void setMlm( float );
char* getDescription( void );
void setDescription( char*);
uint16_t getDose( void );
void setDose( uint16_t );
void setEE(uint16_t ee);
uint8_t startDosing( void );
void startDosing( uint8_t );
void stopDosing( void );
uint8_t getDC( void );
void setDC( uint8_t );
void save();
void load(); // make sure you call setEE before you load
boolean isOn();
private:
uint8_t _counter; // count 1 minute of dosing
uint8_t _pin; // which digital pin controls the pump
uint8_t _dc; // duty cycle 100%-0%
float _mlm; // how many ml/m does the pump move
uint16_t _dose; // daily dose for the pump in ml
char * _desc; // some descriptin
uint16_t _ee; // location in EEPROM
boolean _isOn; // 0 dose = off
};
#endif