]> git.piffa.net Git - sketchbook_andrea/blobdiff - motors/servo/Knob_2/Knob_2.ino
Motori
[sketchbook_andrea] / motors / servo / Knob_2 / Knob_2.ino
index 998c8a7c787c5780fe96b358610cdd6e36117de3..08bd2098d0dfdc99f8fec90c5386d184b8251532 100644 (file)
@@ -1,11 +1,13 @@
 // Controlling a servo position using a potentiometer (variable resistor) 
 // by Michal Rinott <http://people.interaction-ivrea.it/m.rinott> 
 
+// Schema: https://lab.piffa.net/schemi/potenziometro_bb.png
+
 #include <Servo.h> 
  
 Servo myservo;  // create servo object to control a servo 
  
-int potpin = 0;  // analog pin used to connect the potentiometer
+const int potpin = A0;  // analog pin used to connect the potentiometer
 int val;    // variable to read the value from the analog pin 
 
 void setup()