Hello....
My supplies:
Arduino UNO
TowerPro Servo
Linear Pot. (radio shack 271-1715 ( http://www.radioshack.com/product/index.jsp?productId=2062354#inTheBox ))
Sketch being used: Arduino / File / Example / Servos / Knob
*******************************************
Ok hope the supplies help you, help me 
Everything works wonderful using this example, but my question is:
The lineear pot turns from left to right about, maybe 350°, in laymen terms picture a clock 7 being the start, 5 being the stop.
The servo will turn, when the pot is turned, but it seems as though the servo does NOT star moving until (using the example above until 11, and completes its travels upto 1) sorry for using this as an example, but its the best way to paint the picture.
So can someone tell me what I need to do in order to get the servo to start turning say around 8 and stop right around say 4?
here is the code if you are unfamiliar with it:
// Controlling a servo position using a potentiometer (variable resistor)
// by Michal Rinott <http://people.interaction-ivrea.it/m.rinott>
#include <Servo.h>
Servo myservo; // create servo object to control a servo
int potpin = 0; // analog pin used to connect the potentiometer
int val; // variable to read the value from the analog pin
void setup()
{
myservo.attach(9); // attaches the servo on pin 9 to the servo object
}
void loop()
{
val = analogRead(potpin); // reads the value of the potentiometer (value between 0 and 1023)
val = map(val, 0, 1023, 0, 179); // scale it to use it with the servo (value between 0 and 180)
myservo.write(val); // sets the servo position according to the scaled value
delay(15); // waits for the servo to get there
}
Thanks for your help...
Tony


