Sorry to reply in English but I hope the following makes things clearer:
That example uses a software servo library that does not use PWM so it should work in any pin. Unfortunately, the library name conflicts with the naming of servo library distributed with Arduino and its not good to have two libraries on your system with the same name. But the Arduino Servo library that comes with version 0017 will also work on any pin so I suggest you remove the software servo library (if you have downloaded it) and use the Arduino library.
edit: I see you now have it working, but you may still want to switch to the arduino library, it has the advantage that you do not need to repeatedly call the refresh function in loop.
The following version of that sketch should work with the Arduino Servo Library:
#include <Servo.h>
Servo servo1; Servo servo2;
void setup() {
servo1.attach(14); //analog pin 0
servo2.attach(15); //analog pin 1
Serial.begin(19200);
Serial.println("Ready");
}
void loop() {
static int v = 0;
if ( Serial.available()) {
char ch = Serial.read();
switch(ch) {
case '0'...'9':
v = v * 10 + ch - '0';
break;
case 's':
servo1.write(v);
v = 0;
break;
case 'w':
servo2.write(v);
v = 0;
break;
case 'd':
servo2.detach();
break;
case 'a':
servo2.attach(15);
break;
}
}
}