Bing Zhang / Mbed 2 deprecated TouchSense

Dependencies:   mbed

touch1.cpp

Committer:
bzhang10
Date:
2010-11-30
Revision:
0:cdbd21489e81

File content as of revision 0:cdbd21489e81:

#include "mbed.h"

#define numsamples 1

AnalogIn input1(p15);
DigitalIn charger1(p16);
DigitalOut ground1(p17);

int touchSense1(void) {
    float sample;
    ground1 = 0;
    charger1.mode(PullUp);
    charger1.mode(PullNone);
    sample=input1.read();
    if (sample < 0.3) {
        return 1;
    } else {
        return 0;
    }
}