writeMicroseconds on MKR 1010

Hello everybody,

Has anyone used "writeMicroseconds" on a MKR 1010? I want to use it to drive a motorcontroller but I am getting nowhere. The code is very simple:

#include <Servo.h>
Servo motor;

void setup()
{
motor.attach(9);
}

void loop()
{
motor.writeMicroseconds(1000);
}

The motor should turn but it doesn't work. I was wondering if the command " motor.writeMicroseconds" works on the MKR 1010.

Thanks in advance,
Bart

The servo attached doesn't have to move as the position is constant. Why do you expect the servo to move? I cannot find the wiring diagram and the links to the used hardware in your post.