Hi once again Ben!
I´m in front of the arduino now, and reading the test procedure you´ve suggested, and i have some doubts:
- what is the Vcc?
- when you say to use a resistor what should be the value?
Here´s the code.. please take a look and tell me if i´m doing it the right way.. what intrigues me is that it was working really fine!!

thanks once more!
int sensor1 = 0;
int sensor1Val = 0;
void setup() {
Serial.begin(9600);
}
void loop(){
sensor1Val = analogRead(sensor1);
Serial.print("sensor1 = ");
Serial.println(sensor1Val);
}