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