-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsensor_luz.cpp
50 lines (42 loc) · 869 Bytes
/
sensor_luz.cpp
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
#include <Arduino.h>
#include "componentes.h"
#include "sensor_luz.h"
static void real_actualizar();
namespace hw
{
namespace sensor
{
struct actualizar_ayuda
{
inline void actualizar(sensor_luz& sens)
{
/*
* Si es LOW, nos estan llamando desde RISING.
* Si es HIGH, estamos en FALLING.
* Siempre tenemos que attachear con el modo opuesto.
*/
auto modo_attach(RISING);
if(sens.estado_ == LOW)
modo_attach = FALLING;
sens.estado_ = !sens.estado_;
attachInterrupt(sensor_luz::interrupt, real_actualizar, modo_attach);
}
};
void sensor_luz::actualizar()
{
}
sensor_luz::sensor_luz()
{
attachInterrupt(interrupt, real_actualizar, RISING);
}
bool sensor_luz::leer() const
{
return estado_;
}
}
}
static void real_actualizar()
{
hw::sensor::actualizar_ayuda act_ay;
act_ay.actualizar(componentes.buscar<hw::sensor::sensor_luz>());
}