Hello everyone!
I am trying to read 3 thermistors and spit it out onto a webpage. I am having some problems so decided to check out whats really going on.
I plugged the USB cable into the Arduino+EtherShield and just did (all the way to 5). Output below is with nothing hooked up to the board.
client.print(analogRead(0));
client.print(" - 1
");
client.print(analogRead(1));
client.print(" - 2
");
And got this as an output on the webpage:
1023 - 1
1023 - 2
931 - 3
833 - 4
717 - 5
649 - 6
I then wanted to see what happened without anything hooked up to the arduino... just the board itself (no shield) and did this:
Serial.println(analogRead(0));
Serial.println(analogRead(1)); (all the way to 5)
And got this for the output with no wires connected (kept floating... ok....):
415
407
369
332
290
304
And this when I hooked up 3 aInputs with everything (http://www.arduino.cc/cgi-bin/yabb2/YaBB.pl?num=1254096639/3) but the thermistors:
0
0
0
114
179
219
What is happening to the analog inputs with the Ethernet Shield? Is their something I am doing wrong? >:(