-
Notifications
You must be signed in to change notification settings - Fork 187
/
RCpoll.h
67 lines (57 loc) · 1.69 KB
/
RCpoll.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
/*
* RCpoll.h
*
* This file is part of Mozzi.
*
* Copyright 2014-2024 Tim Barrass and the Mozzi Team
*
* Mozzi is licensed under the GNU Lesser General Public Licence (LGPL) Version 2.1 or later.
*
*/
#ifndef RCPOLL_H
#define RCPOLL_H
/**
A class for reading voltage on a digital pin, derived from http://arduino.cc/en/Tutorial/RCtime.
This is designed to be used in updateControl(). Each time it is called, it checks if a capacitor has charged,
and returns an output reflecting how long it took for the most recent charge.
*/
template <unsigned char SENSOR_PIN>
class RCpoll
{
public:
/** Constructor.
*/
RCpoll():result(0),rc_cued(true), output(0)
{
;
}
/** Checks whether the capacitor has charged, and returns how long it took for the most recent charge.
This would preferably be called in updateControl(), but if the resolution isn't fine enough or the
pin charges too fast for updateControl() to catch, try it in updateAudio().
@return the sensor value, reflected in how many checking cycles it took to charge the capacitor.
*/
inline
unsigned int next(){
if (rc_cued){
pinMode(SENSOR_PIN, INPUT); // turn pin into an input and time till pin goes low
digitalWrite(SENSOR_PIN, LOW); // turn pullups off - or it won't work
rc_cued = false;
}
if(digitalRead(SENSOR_PIN)){ // wait for pin to go low
result++;
}
else{
output = result;
result = 0;
pinMode(SENSOR_PIN, OUTPUT); // make pin OUTPUT
digitalWrite(SENSOR_PIN, HIGH); // make pin HIGH to discharge capacitor - see the schematic
rc_cued = true;
}
return output;
}
private:
unsigned int result;
boolean rc_cued;
unsigned int output;
};
#endif // #ifndef RCPOLL_H