Funnel of Feelings

When certain forces are employed to fabric, it stretches it our to a certain point. Utilizing the soft potentiometer, whenever forces are applied to the funnels, it will react and express it on the LED light strips. The movement on the soft potentiometer reflects the movement of the funnel being pulled down. In order for the funnel to get attention from visitors, it will glow and beat red to the rhythm of a beating heart. Once someone steps  into the funnel, it will glow blue to make them feel calm and invited. Once forces are applied to the funnel and it is being pulled down, the funnel will glow various colors that are in relation to the stresses applied. Ideally, these funnels will not only be for the curious mind, but also be utilized as safe havens for autistic children. Project Concept
const int analogInPin = A0;
const int analogOutPin = 3,5,6;

int sensorValue = 0; // value read from the pot
int outputValue = 0; // value output to the PWM (analog out)

if outputvalue = 10;

void setup() {
// initialize serial communications at 9600 bps:
Serial.begin(9600);
}

void loop() {
// read the value from the sensor:
sensorValue = analogRead(AO);
// turn the ledPin on
digitalWrite(analogOutPin, HIGH);
// stop the program for <sensorValue> milliseconds:
delay(200);
// turn the ledPin off:
sensorValue = analogRead(A0);
digitalWrite(AnalogOutPin, LOW);
// stop the program for for <sensorValue> milliseconds:
delay(200);
}