View Single Post
Old 09-30-2013, 07:52 PM   #112 (permalink)
Ardent
EcoModding Apprentice
 
Join Date: Jun 2010
Location: Virginia
Posts: 114
Thanks: 33
Thanked 56 Times in 38 Posts
Quote:
Originally Posted by josemapiro View Post
I think the problem I'm having now, has to do with the values ​​that each sends resistance, which may vary slightly and complicate the whole process, but at least I can see the system moving.
You should be able to monitor the values that the Arduino sees by adding something like the following where "X" corresponds to the analog pin being used:
Code:
Serial.print("adcX = ");
Serial.println(adcX);
. . . and then open the Serial Monitor.
  Reply With Quote