Three Cheers
I followed the advice in the link you provided and commented out the line
server.istenOnLocalhost(); and I can now get an analog reading.
I was using code found on this page.
http://arduino.cc/en/Tutorial/Bridge
This is the section that produces the problem.
void setup() {
Serial.begin(9600);
// Bridge startup
pinMode(13,OUTPUT);
digitalWrite(13, LOW);
Bridge.begin();
digitalWrite(13, HIGH);
// Listen for incoming connection only from localhost
// (no one from the external network could connect)
server.listenOnLocalhost();
server.begin();
}
Commenting out the line "server.listenOnLocalhost();" eliminates the problem.
Thank you for your help
Howard