Audio Input

well... finally the Shifty VU Shield arrived, but somehow it doesnt work the way i expected^^
i just plugged it to my arduino. The RFSEL is "open" and the PWRSL too.( no jumpers)

I'm using this code that I've found here in the forums to read out the values but it's always 0.
any ideas what's wrong?

int sensorPinA = 2;
int sensorPinB = 3;
int sensorValueA = 1;
int sensorValueB = 1;

void setup() {
Serial.begin(9600);
}

void loop() {

for(;:wink: {

// pinMode(sensorPinA, OUTPUT);

sensorValueA = analogRead(sensorPinA);
sensorValueB = analogRead(sensorPinB);

Serial.print("Value");
Serial.print("\t");

Serial.print("A 2");
Serial.print("\t");
Serial.print(sensorValueA);
Serial.print("\t");

Serial.print("B 3");
Serial.print("\t");
Serial.print(sensorValueB);
Serial.print("\t");
delay(200);

Serial.println("");
}
}