]> git.piffa.net Git - sketchbook_andrea/blob - advanced_projects/capacitance/led_binary/led_binary.ino
Capacitance fir st commit,
[sketchbook_andrea] / advanced_projects / capacitance / led_binary / led_binary.ino
1 #include <CapacitiveSensor.h>
2
3 /*
4  * CapitiveSense Library Demo Sketch
5  * Paul Badger 2008
6  * Uses a high value resistor e.g. 10M between send pin and receive pin
7  * Resistor effects sensitivity, experiment with values, 50K - 50M. Larger resistor values yield larger sensor values.
8  * Receive pin is the sensor pin - try different amounts of foil/metal on this pin
9  */
10
11
12 CapacitiveSensor   cs_4_2 = CapacitiveSensor(4, 2);       // 10M resistor between pins 4 & 2, pin 2 is sensor pin, add a wire and or foil if desired
13 // pin 8 is sensor pin, add a wire and or foil
14 const int led = 13;        // pin that the Piezo is attached to
15 int sensorMin = 50;        // minimum sensor value
16 int sensorMax = 3200;           // maximum sensor value
17 void setup()
18 {
19   cs_4_2.set_CS_AutocaL_Millis(0xFFFFFFFF);     // turn off autocalibrate on channel 1 - just as an example
20   Serial.begin(9600);
21   pinMode(led, OUTPUT);
22 }
23
24 void loop()
25 {
26   long start = millis();
27   long total1 =  cs_4_2.capacitiveSensor(30);
28
29   if (total1 > (sensorMax / 2 - sensorMin)) {
30     digitalWrite(led, HIGH);
31     delay(100);
32   }
33   else {
34     digitalWrite(led, LOW);
35     delay(100);
36   }
37
38   Serial.print(millis() - start);        // check on performance in milliseconds
39   Serial.print("\t Capacitance: ");                    // tab character for debug windown spacing
40
41   Serial.println(total1);                  // print sensor output 1
42   delay(1);                             // arbitrary delay to limit data to serial port
43
44 }