#include <Servo.h>
Servo servo;
void setup() {
servo.attach(3);
servo.attach(5 );
// put your setup code here, to run once:
pinMode(3, OUTPUT );
pinMode(5, OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
analogRead(A4 );
analogRead (A0 );
int ss=map(analogRead(A0),0,1023,0,180);
int pp=map(analogRead(A4 ),0,1023,0,180);
servo.write(ss );
servo.write(pp );
}