-
Notifications
You must be signed in to change notification settings - Fork 14
/
LDR.h
42 lines (37 loc) · 1.11 KB
/
LDR.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
/**
* LDR
* Klasse fuer den Zugriff auf einen lichtabhaengigen Widerstand.
*
* @mc Arduino/RBBB
* @autor Christian Aschoff / caschoff _AT_ mac _DOT_ com
* @version 1.8
* @created 18.3.2012
* @updated 16.2.2015
*
* Versionshistorie:
* V 1.1: - Optimierung hinsichtlich Speicherbedarf.
* V 1.2: - Verbessertes Debugging.
* V 1.3: - Beschraenkund der LDR-Werte bei autoscale == false.
* V 1.4: - Der LDR mapped die Werte jetzt selbst, dadurch wird flackern bei unguenstigen Lichtverhaeltnissen vermindert.
* V 1.5: - Der LDR gibt Werte zwischen 0 und 100% zurueck, das ist besser verstaendlich.
* V 1.6: - Hysterese eingefuert, damit bei kippeligen Lichtverhaeltnissen kein Flackern auftritt.
* V 1.7: - isInverted eingefuehrt.
* V 1.8: - Unterstuetzung fuer die alte Arduino-IDE (bis 1.0.6) entfernt.
*/
#ifndef LDR_H
#define LDR_H
#include "Arduino.h"
#include "Configuration.h"
class LDR {
public:
LDR(byte pin, boolean isInverted);
byte value();
private:
byte _pin;
boolean _isInverted;
int _lastValue;
byte _outputValue;
int _min;
int _max;
};
#endif