-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAtlasStampEC.h
88 lines (63 loc) · 1.62 KB
/
AtlasStampEC.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
// AtlasStampEC.h
#ifndef _ATLASSTAMPEC_h
#define _ATLASSTAMPEC_h
#if defined(ARDUINO) && ARDUINO >= 100
#include "arduino.h"
#else
#include "WProgram.h"
#endif
#include "AtlasStampTemperatureCompensated.h"
#ifdef ATLAS_DEBUG
#define ATLAS_DEBUG_EC
#endif
//TODO: En funcion de los parametros que tengmaos activos para la salida deberiamos cal
//cular el el valor de _response_field_count ojo que cuando cambie tendremos que "reasignar"
//la memoria para los resultados que se reserva en el constructor
//TODO: Falta optimizar las funciones antiguas de set/get_k
//DATASHEET: https://www.atlas-scientific.com/_files/_datasheets/_circuit/ec_EZO_datasheet.pdf
class AtlasStampEc : public AtlasStampTemperatureCompensated
{
public:
enum Parameters{
EC = 1 << 0,
TDS = 1 << 1,
S = 1 << 2,
SG = 1 << 3,
};
explicit AtlasStampEc(byte);
bool const begin(void);
void info(Stream&);
//TODO: Guardar localmente la ultima K recuperada/fijada
//que no tengamos que preguntarle al stamp cada vez
bool set_k(float);
float get_k(void);
bool const set_output_parameter(Parameters, bool);
bool const get_output_parameter(Parameters);
private:
uint8_t _parameter_state = 0;
float _current_k;
bool _load_k(void);
bool const _load_parameters();
bool const _stamp_ready();
inline char* parameter_to_char(Parameters p) __attribute__((always_inline))
{
switch(p)
{
case Parameters::EC:
return "EC";
break;
case Parameters::TDS:
return "TDS";
break;
case Parameters::S:
return "S";
break;
case Parameters::SG:
return "SG";
break;
default:
return nullptr;
}
}
};
#endif