FastTouch/FastTouch.ino

19 lines
314 B
Arduino
Raw Normal View History

2019-04-11 19:16:59 +02:00
#define TOUCH_PIN 4 //Für Touch: 2, 4, 12, 13, 14, 15, 27
int touch_value = 100;
void setup(){
Serial.begin(115200);
Serial.println("Touch Test");
}
void loop(){
touch_value = touchRead(TOUCH_PIN);
if (touch_value < 65) { Serial.print("Touch @ "); }
Serial.println(touch_value);
delay(20);
}