The Analog textile pressbutton is a analog textile sensor that changes its resistance if you put pressure on it. It is useful for creating variable voltage divider that can be easily read by an Arduino.
2. Connect the sensor to the power supplyConnect one end of the sensor to the 5V pin of the Lilypad. Then you need to connect the other end to ground through a 1 kOhm resistor like shown in the picture.
Now connect the analog input ping A5 of the Arduino to the end of the sensor connected to the resistor.
The sensor changes its resistance depending on how much you press it. This will change the voltage read by the Arduino. The read value will change the blinking frequency of the LED.
int sensorPin = A5; // select the input pin for the sensor
int ledPin = 13; // select the pin for the LED
int sensorValue = 0; // variable to store the value coming from the sensor
void setup() {
// declare the ledPin as an OUTPUT:
pinMode(ledPin, OUTPUT);
}
void loop() {
// read the value from the sensor:
sensorValue = analogRead(sensorPin);
// turn the ledPin on
digitalWrite(ledPin, HIGH);
// stop the program for <sensorValue> milliseconds:
delay(sensorValue);
// turn the ledPin off:
digitalWrite(ledPin, LOW);
// stop the program for for <sensorValue> milliseconds:
delay(sensorValue);
}
Comments
Please log in or sign up to comment.