#include "Servo.h"
Servo s;
int js ;
int js2;
Servo s0;
int js0 ;
int js20;
void setup() {
}
void loop() {
js= analogRead(A0);
js2 = map(js,0,1023,0,180);
s.attach(3);
s.write(js2);
js0= analogRead(A1);
js20 = map(js0,0,1023,0,180);
s0.attach(5);
s0.write(js20);
}